web-dev-qa-db-ja.com

フラッター|右揃えが機能しない

コンテナをテキストビューの子に右揃えしようとしましたが、別の列の内側に行の親があり、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つのアイテムのテキストを右に揃えたい

スクリーンショット

10
Musa Usman

mainAxisAlignmentウィジェットでRowプロパティを使用します。

new Row(
    mainAxisAlignment: MainAxisAlignment.spaceBetween, 
    ...
)
24
Vinoth Kumar