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

@ -18,9 +18,12 @@ class BottomModal extends StatelessWidget {
child: Container(
padding: title != null ? const EdgeInsets.only(top: 10) : null,
decoration: BoxDecoration(
color: theme.scaffoldBackgroundColor,
borderRadius: const BorderRadius.all(Radius.circular(10)),
),
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,