gpt4 book ai didi

flutter - 防止从外部触摸隐藏 showModalBottomSheet

转载 作者:IT王子 更新时间:2023-10-29 07:15:10 27 4
gpt4 key购买 nike

是否有可能阻止 ModalBottomSheet 对外部触摸隐藏?就像在 showDialog() 中一样,我们可以使用 barrierDismissible property to prevent dialog from closing on outside touch

最佳答案

你可以像这样使用 isDismissible: falseenableDrag: false

showModalBottomSheet(
isDismissible: false,
enableDrag: false,

builder: (context) {
return Container(
height: 100.0
)
}
);

关于flutter - 防止从外部触摸隐藏 showModalBottomSheet,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57606605/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com