Skip to content

Commit

Permalink
feat: add border to SelectedCombatantsBottomSheet
Browse files Browse the repository at this point in the history
  • Loading branch information
VytorCalixto committed Nov 20, 2024
1 parent 11ee119 commit 938480b
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ class _Sheet extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Padding(
padding: const EdgeInsets.symmetric(horizontal: 8),
padding: const EdgeInsets.symmetric(horizontal: 1),
child: Material(
elevation: 8,
clipBehavior: Clip.antiAlias,
Expand All @@ -96,6 +96,7 @@ class _Sheet extends StatelessWidget {
topLeft: Radius.circular(25),
topRight: Radius.circular(25),
),
border: Border.all(color: Colors.grey.shade700.withOpacity(.5)),
),
width: double.infinity,
child: Column(
Expand Down

0 comments on commit 938480b

Please sign in to comment.