美文网首页
flutter Container组件宽度撑满屏幕

flutter Container组件宽度撑满屏幕

作者: PharkiLL | 来源:发表于2020-07-09 12:10 被阅读0次

在flutter开发中,如果不给Container组件设置宽度的话,它的宽度是取决于子组件的宽度,如何给Container设置撑满屏幕的宽度呢?

以下两种方式都可:

Container(
  color: Colors.red,
  width: MediaQuery.of(context).size.width,
  child: Text("宽度有多宽"),
)
Container(
  color: Colors.red,
  width: double.infinity,
  child: Text("宽度有多宽"),
)

————————————————
版权声明:本文为CSDN博主「菲菲紫妮」的原创文章

相关文章

网友评论

      本文标题:flutter Container组件宽度撑满屏幕

      本文链接:https://www.haomeiwen.com/subject/qcvjcktx.html