【发布时间】:2023-01-03 01:49:50
【问题描述】:
标签: flutter
标签: flutter
欢迎来到 Flutter 的世界,在这里您可以组合不同的小部件树以获得您想要的结果。
结果:
代码
IntrinsicWidth(
child: Column(
children: [
Text(
"Expenses",
style: TextStyle(color: Colors.white, fontSize: 30),
),
SizedBox(
height: 5,
child: Row(
children: [
Expanded(
flex: 3,
child: Container(
color: Colors.white,
),
),
SizedBox(
width: 5,
),
Expanded(
flex: 2,
child: Container(
color: Colors.white,
),
),
SizedBox(
width: 8,
),
Expanded(
flex: 1,
child: Container(
color: Colors.white,
),
),
],
),
),
],
),
)
【讨论】: