飘动 |右对齐不起作用
FLUTTER | Right Align not working
尝试将容器与文本视图子项右对齐,它有一个位于另一列内的父行,尝试了 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
使用 mainAxisAlignment
属性 Row
小部件。
new Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
...
)
截图:
您也可以这样尝试Wrap
:
Wrap(
spacing: 50, // spacing between each of the widgets below
children: <Widget>[
Text("One"),
Text("Two"),
Text("Three"),
],
)
使用 Spacer
得到剩余的 space 并平均分配小部件
Row(
children: <Widget>[
Text("Text 1", style: TextStyle(fontSize: 20),),
Spacer(),
Text("Text 2", style: TextStyle(fontSize: 20),),
Spacer(),
Text("Text 3", style: TextStyle(fontSize: 20),),
],
),
输出:
尝试将容器与文本视图子项右对齐,它有一个位于另一列内的父行,尝试了 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
使用 mainAxisAlignment
属性 Row
小部件。
new Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
...
)
截图:
您也可以这样尝试Wrap
:
Wrap(
spacing: 50, // spacing between each of the widgets below
children: <Widget>[
Text("One"),
Text("Two"),
Text("Three"),
],
)
使用 Spacer
得到剩余的 space 并平均分配小部件
Row(
children: <Widget>[
Text("Text 1", style: TextStyle(fontSize: 20),),
Spacer(),
Text("Text 2", style: TextStyle(fontSize: 20),),
Spacer(),
Text("Text 3", style: TextStyle(fontSize: 20),),
],
),
输出: