gpt4 book ai didi

flutter - 使 Column 的子项(例如 Container Layout)水平 wrap_content

转载 作者:IT王子 更新时间:2023-10-29 06:58:11 26 4
gpt4 key购买 nike

如图所示:

两个文本之间有一条实线(神奇宝贝,上午 11 点 25 分)。 我想要的是等于最长文本长度的行的长度。但该行的行为类似于 match_parent。

在 Android Native 中我们可以使用垂直的 LinearLayout,并在水平方向设置 android:layout_width="wrap_content"限制。

在Flutter中我们只能设置Column mainAxisSize: MainAxisSize.min limit in vertical.

enter image description here

我猜问题出在分频器上。当 Divider 消失时,Column 的宽度为 wrap_content。

实验如下:

enter image description here

enter image description here

      Container(
color: Colors.red,
margin: EdgeInsets.symmetric(horizontal: 8.0),
child: Column(
mainAxisSize: MainAxisSize.min,
children: <Widget>[
Container(
margin: EdgeInsets.symmetric(vertical: 8.0),
padding: EdgeInsets.all(4.0),
child: Text(
'Pokémon',
style: TextStyle(
color: Colors.white,
fontSize: 18.0,
fontWeight: FontWeight.bold),
maxLines: 1,
overflow: TextOverflow.ellipsis,
),
),
Divider(
height: 2.0,
color: Colors.white,
),
Container(
margin: EdgeInsets.only(top: 8.0),
child: Text(
'11.25 AM',
style: TextStyle(
color: Colors.white,
fontSize: 12.0,
fontWeight: FontWeight.bold),
maxLines: 1,
overflow: TextOverflow.ellipsis,
),
),
],
),
),

最佳答案

您可以使用 - IntrinsicWidth 小部件。用它包裹 Column。

Container(
color: Colors.red,
margin: EdgeInsets.symmetric(horizontal: 8.0),
child: IntrinsicWidth(
child: Column(
mainAxisSize: MainAxisSize.min,
crossAxisAlignment: CrossAxisAlignment.center,
children: <Widget>[
Container(
margin: EdgeInsets.symmetric(vertical: 8.0),
padding: EdgeInsets.all(4.0),
child: Text(
'Pokémon',
style: TextStyle(
color: Colors.white,
fontSize: 18.0,
fontWeight: FontWeight.bold),
maxLines: 1,
overflow: TextOverflow.ellipsis,
),
),
Divider(
height: 2.0,
color: Colors.white,
),
Container(
margin: EdgeInsets.only(top: 8.0),
child: Text(
'11.25 AM',
style: TextStyle(
color: Colors.white,
fontSize: 12.0,
fontWeight: FontWeight.bold),
maxLines: 1,
overflow: TextOverflow.ellipsis,
),
),
],
),
),
),

enter image description here

关于flutter - 使 Column 的子项(例如 Container Layout)水平 wrap_content,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54922111/

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