gpt4 book ai didi

flutter |右对齐不起作用

转载 作者:IT老高 更新时间:2023-10-28 12:32:09 34 4
gpt4 key购买 nike

尝试将容器与 TextView subview 右对齐,它有一个父行位于另一列内,尝试了 Stack Overflow 的多种解决方案,但均无效。

代码

///Transactions Heading
new Column(
children: <Widget>[
new Row(
children: <Widget>[
new Container(
alignment: Alignment.centerLeft,
margin: new EdgeInsets.only(top: 20.0, left: 10.0),
child: new Text(
"Transactions",
style: new TextStyle(
color: primaryTextColor,
fontSize: 25.0,
fontWeight: FontWeight.w700,
letterSpacing: 0.1,
),
),
),
new Container(
margin: new EdgeInsets.only(top: 25.0),
child: new Text(
currentGoalTransactions.length.toString() + " items",
style: new TextStyle(
color: darkHeadingsTextColor, fontSize: 15.0),
),
),
],
),
]);

想要将 2 项文本向右对齐

Screenshot

最佳答案

使用 Row 小部件中的 mainAxisAlignment 属性。

new Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
...
)

关于 flutter |右对齐不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50640161/

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