gpt4 book ai didi

flutter - 在列小部件内的特定位置对齐行项目

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

难以将行小部件内的行项目定位在特定边缘位置(如此图像):

enter image description here

Padding(
padding: const EdgeInsets.all(10.0),
child: Column(
children: <Widget>[
values('Date', ': ${DateFormat('MMM dd, yyyy, hh:mm a').format(DateTime.parse(date))}', false),
values('Description', ': $description', false),
],
),
),



Widget values(String title, String value, bool isAmount) {
return Row(
children: <Widget>[
Text(
title,
style: TextStyle(fontWeight: FontWeight.bold, color: Colors.grey),
),
Spacer(),
Text(
value,
style: TextStyle(
color: isAmount ? Color(0xFF34B3C1) : Colors.black87,
),
),
Spacer(),
],
);
}

最佳答案

使用扩展后的 flex 来实现,

  Widget values(String title, String value, bool isAmount) {
return Row(
children: <Widget>[
Expanded(
flex: 3,
child: Text(
title,
style: TextStyle(fontWeight: FontWeight.bold, color: Colors.grey),
),
),
Spacer(),
Expanded(
flex: 7,
child: Text(
value,
style: TextStyle(
color: isAmount ? Color(0xFF34B3C1) : Colors.black87,
),
),
),
Spacer(),
],
);
}

关于flutter - 在列小部件内的特定位置对齐行项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58948539/

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