fix modal handle bug

This commit is contained in:
Kima
2024-04-02 21:29:50 +02:00
parent 3e140ce0ed
commit fdd4a9700c
2 changed files with 2 additions and 2 deletions

View File

@@ -61,7 +61,7 @@ Future<T?> showRoundedModalBottomSheet<T>(
isDismissible: true, isDismissible: true,
useRootNavigator: rootNavigator, useRootNavigator: rootNavigator,
builder: (context) => RoundedBottomSheet( builder: (context) => RoundedBottomSheet(
showHandle: false, showHandle: showHandle,
child: child, child: child,
), ),
); );