add hairline border around bottom modal

This commit is contained in:
krawieck 2021-01-09 02:49:01 +01:00
parent 1f304344b2
commit e518092adb
1 changed files with 6 additions and 3 deletions

View File

@ -20,7 +20,10 @@ class BottomModal extends StatelessWidget {
decoration: BoxDecoration(
color: theme.scaffoldBackgroundColor,
borderRadius: const BorderRadius.all(Radius.circular(10)),
),
border: Border.all(
color: Colors.grey.withOpacity(0.5),
width: 0.2,
)),
child: Column(
mainAxisSize: MainAxisSize.min,
crossAxisAlignment: CrossAxisAlignment.start,