Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 modalBottomSheet 来存储我的用户的设置配置文件。我想在底页关闭时执行 firebase 操作。有没有办法禁用所有 modalBottomSheet 手势以强制工作表仅在图标 onTap 操作上关闭?谢谢
您可以设置isDismissible和enableDrag。false
isDismissible
enableDrag
false
showModalBottomSheet( context: context, isDismissible: false, enableDrag: false, builder: (context) => BottomSheetWidget(), );