我使用showRoundedModalBottomSheet,如何调整此模式高度,直到低于应用栏?
[更新]
在showModalBottomSheet(...)设置属性isScrollControlled:true。
showModalBottomSheet(...)
isScrollControlled:true
这将使bottomSheet达到最大高度。
[原始回答]
您可以改为实现FullScreenDialog。
Flutter Gallery应用程序具有FullScreenDialog的示例
您可以使用以下代码打开对话框:
Navigator.of(context).push(new MaterialPageRoute<Null>( builder: (BuildContext context) { return Dialog(); }, fullscreenDialog: true ));
还要查看此博客文章以了解更多信息:
希望对您有帮助。