showModalBottomSheet组件是从底部弹出的UI组件。其高度默认为屏幕高度的一半。
如果需要自定义高度,要设置isScrollControlled
属性为true可滚动(默认是false,不可滚动)
1 | showModalBottomSheet( |
在SheetTemplate组件中设置高度
1 | double screenHeight = MediaQuery.of(context).size.height; |
showModalBottomSheet组件自定义高度
showModalBottomSheet组件是从底部弹出的UI组件。其高度默认为屏幕高度的一半。
如果需要自定义高度,要设置isScrollControlled
属性为true可滚动(默认是false,不可滚动)
1 | showModalBottomSheet( |
在SheetTemplate组件中设置高度
1 | double screenHeight = MediaQuery.of(context).size.height; |