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,