We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d31924c commit 51b2931Copy full SHA for 51b2931
lib/widgets/poll.dart
@@ -90,6 +90,10 @@ class _PollWidgetState extends State<PollWidget> {
90
ConstrainedBox(
91
constraints: const BoxConstraints(minWidth: 44, minHeight: 44),
92
child: Padding(
93
+ // For accessibility, the touch target is padded to be larger
94
+ // than the vote count box. Still, we avoid padding at the
95
+ // start because we want to align all the poll options to the
96
+ // surrounding messages.
97
padding: const EdgeInsetsDirectional.only(
98
end: 5, top: verticalPadding, bottom: verticalPadding),
99
child: Material(
0 commit comments