【发布时间】:2020-04-18 00:52:36
【问题描述】:
我想在flutter中破解iOS全屏对话框something like this,有什么建议或解决方案吗?
提前致谢
【问题讨论】:
我想在flutter中破解iOS全屏对话框something like this,有什么建议或解决方案吗?
提前致谢
【问题讨论】:
来试试这个吧,我想这就是你要找的东西
//This should be one of the first lines in your build function
Size size = MediaQuery.of(context).size;
RaisedButton(
child: Text('Show Bottom Modal'),
onPressed: () => showModalBottomSheet(
isScrollControlled: true,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(30)),
context: context,
builder: (context) => Container(
color: Colors.amber,
height: size.height,
),
),
)
让我知道这对你有什么作用
【讨论】: