From 5940ad5054c39e5abc0706118a804aae43286fe3 Mon Sep 17 00:00:00 2001 From: Krille Date: Sat, 4 Feb 2023 17:00:05 +0100 Subject: [PATCH] style: Make adaptive bottom sheets scrollable by default --- lib/utils/adaptive_bottom_sheet.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/utils/adaptive_bottom_sheet.dart b/lib/utils/adaptive_bottom_sheet.dart index bfedb095..3046f107 100644 --- a/lib/utils/adaptive_bottom_sheet.dart +++ b/lib/utils/adaptive_bottom_sheet.dart @@ -8,7 +8,7 @@ Future showAdaptiveBottomSheet({ required BuildContext context, required Widget Function(BuildContext) builder, bool isDismissible = true, - bool isScrollControlled = false, + bool isScrollControlled = true, }) => showModalBottomSheet( context: context,