gpt4 book ai didi

flutter - 基于子文本小部件的动态高度容器

转载 作者:行者123 更新时间:2023-12-03 04:00:12 24 4
gpt4 key购买 nike

我想根据子文本小部件实现动态容器高度。从服务器接收到的动态文本字符串。因此,每当我获取它时,应该在 Container 中正确看到它。我使用了以下代码:

Container(
width: MediaQuery.of(context).size.width*.93,
height: MediaQuery.of(context).size.height*.20,
child: Text(strTips, style: TextStyles.knowYourImpact, ),
)

为了引用,我添加了图片。 enter image description here

最佳答案

您可以使用 Flexible小部件:

根据文档:

A widget that controls how a child of a Row, Column, or Flex flexes.

Using a Flexible widget gives a child of a Row, Column, or Flex the flexibility to expand to fill the available space in the main axis (e.g., horizontally for a Row or vertically for a Column),

Container(
child: Row(
children: <Widget>[
Flexible(
child: Text(strTips, style: TextStyles.knowYourImpact, ))
],
));

关于flutter - 基于子文本小部件的动态高度容器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57849645/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com