From c012cdff64df90d875477ea0a3ed732810658468 Mon Sep 17 00:00:00 2001 From: Kima Date: Sun, 7 Apr 2024 19:33:36 +0200 Subject: [PATCH] have no idea what i've done, but it works --- .../lib/common/bottom_sheet_menu/rounded_bottom_sheet.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/refilc_mobile_ui/lib/common/bottom_sheet_menu/rounded_bottom_sheet.dart b/refilc_mobile_ui/lib/common/bottom_sheet_menu/rounded_bottom_sheet.dart index 7d1a365..7bb4977 100644 --- a/refilc_mobile_ui/lib/common/bottom_sheet_menu/rounded_bottom_sheet.dart +++ b/refilc_mobile_ui/lib/common/bottom_sheet_menu/rounded_bottom_sheet.dart @@ -1,4 +1,3 @@ -import 'package:flutter/widgets.dart'; import 'package:refilc/theme/colors/colors.dart'; import 'package:flutter/material.dart'; @@ -7,7 +6,7 @@ class RoundedBottomSheet extends StatelessWidget { super.key, this.child, this.borderRadius = 16.0, - this.shrink = false, + this.shrink = true, this.showHandle = true, }); @@ -61,6 +60,7 @@ Future showRoundedModalBottomSheet( elevation: 0, isDismissible: true, useRootNavigator: rootNavigator, + isScrollControlled: true, builder: (context) => RoundedBottomSheet( showHandle: showHandle, child: child,