From e518092adb80a54156e402f0e2566be771caee67 Mon Sep 17 00:00:00 2001 From: krawieck Date: Sat, 9 Jan 2021 02:49:01 +0100 Subject: [PATCH] add hairline border around bottom modal --- lib/widgets/bottom_modal.dart | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/lib/widgets/bottom_modal.dart b/lib/widgets/bottom_modal.dart index 1e9c55f..517d9a9 100644 --- a/lib/widgets/bottom_modal.dart +++ b/lib/widgets/bottom_modal.dart @@ -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,