首页 > 其他 > 详细

flutter showModalBottomSheet max height

时间:2019-09-26 16:16:24      阅读:231      评论:0      收藏:0      [点我收藏+]
  static void showBuyServiceDialog(BuildContext context) {
    showModalBottomSheet(
      context: context,
      isScrollControlled: false,
      builder: (ctx) {
        return BuySeviceDialog();
      },
    );
  }

当从底部弹窗BuySeviceDialog这个视图的时候,默认最大高度为当前屏幕的一半,只有开启isScrollControlled=true,才可以设置任意高度

https://stackoverflow.com/a/53318679

flutter showModalBottomSheet max height

原文:https://www.cnblogs.com/qqcc1388/p/11592165.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!