Skip to content

Commit

Permalink
Minor adjustment for borderRadius in list_input.dart
Browse files Browse the repository at this point in the history
  • Loading branch information
7h30n3 committed Sep 6, 2023
1 parent 03a30ed commit df806d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/widgets/question_inputs/list_input.dart
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ class _ListInputItemState extends State<ListInputItem> with SingleTickerProvider
final buttonShape = theme.outlinedButtonTheme.style?.shape?.resolve({});
final innerBorderRadius = buttonShape is RoundedRectangleBorder
? buttonShape.borderRadius.subtract(BorderRadius.circular(widget.imagePadding))
: null;
: BorderRadius.zero;
return OutlinedButton(
style: _toggleStyle(widget.active),
onPressed: widget.onTap,
Expand Down

0 comments on commit df806d8

Please sign in to comment.