add hairline border around bottom modal
This commit is contained in:
parent
1f304344b2
commit
e518092adb
|
@ -18,9 +18,12 @@ class BottomModal extends StatelessWidget {
|
||||||
child: Container(
|
child: Container(
|
||||||
padding: title != null ? const EdgeInsets.only(top: 10) : null,
|
padding: title != null ? const EdgeInsets.only(top: 10) : null,
|
||||||
decoration: BoxDecoration(
|
decoration: BoxDecoration(
|
||||||
color: theme.scaffoldBackgroundColor,
|
color: theme.scaffoldBackgroundColor,
|
||||||
borderRadius: const BorderRadius.all(Radius.circular(10)),
|
borderRadius: const BorderRadius.all(Radius.circular(10)),
|
||||||
),
|
border: Border.all(
|
||||||
|
color: Colors.grey.withOpacity(0.5),
|
||||||
|
width: 0.2,
|
||||||
|
)),
|
||||||
child: Column(
|
child: Column(
|
||||||
mainAxisSize: MainAxisSize.min,
|
mainAxisSize: MainAxisSize.min,
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
|
|
Loading…
Reference in New Issue