Flutter / modal_bottom_sheet – 限制宽度?

huangapple go评论53阅读模式
英文:

Flutter / modal_bottom_sheet - constrain width?

问题

我正在审查Flutter的'modal_bottom_sheet'包,并想知道是否有一种方法可以设置模态底部表的最大宽度?

在我的情况下,这是一个Web应用程序,所以我不希望弹出模态框占用整个浏览器的宽度。

英文:

I'm reviewing the Flutter 'modal_bottom_sheet' package, and I'm wondering if there is a way to set the maximum width of a modal bottom sheet?

In my case, this is a web app, so I don't want the popup modal to take the full browser width

答案1

得分: 0

尝试设置约束

    showModalBottomSheet(
      context: context,
      constraints: BoxConstraints(
         maxWidth: 500              
      ),
      builder: 
    )
英文:

Try to set a constraint

showModalBottomSheet(
  context: context,
  constraints: BoxConstraints(
     maxWidth: 500              
  ),
  builder: 
)

huangapple
  • 本文由 发表于 2023年2月6日 21:10:24
  • 转载请务必保留本文链接:https://go.coder-hub.com/75361753.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定