使容器小部件垂直填充父级

使容器小部件垂直填充父级,第1张

使容器小部件垂直填充父级

技巧是将一个

IntrinsicHeight
小部件和一个
Row
crossAxisAlignment:CrossAxisAlignment.stretch

这将迫使Row的子级垂直扩展,但是Row将占用尽可能少的垂直空间。

Card(  child: IntrinsicHeight(    child: Row(      crossAxisAlignment: CrossAxisAlignment.stretch,      children: <Widget>[        Container(          width: 20.0,          color: Colors.amber,        ),        // Expanded(...)      ],    ),  ))


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5010732.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-14
下一篇 2022-11-14

发表评论

登录后才能评论

评论列表(0条)

保存