[Flutter]AppBarのタイトルを左に寄せるには?

Flutter

どうも、ちょげ(@chogetarou)です。

AppBarのタイトルを左側に寄せるには、どうしたらいいのでしょうか?

スポンサーリンク

方法

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        centerTitle: false,
        title: Text("Title"),
      ),
      body: Center(),
    );
  }

AppBarのタイトルを左に寄せるには、引数「centerTitle」に「false」を指定します。

「centerTitle」は、タイトルを真ん中に寄せるかどうかを指定する引数です。

この引数に「true」を指定すると、タイトルが中央に表示されます。

コメント

タイトルとURLをコピーしました