どうも、ちょげ(@chogetarou)です。
AppBarのタイトルを左側に寄せるには、どうしたらいいのでしょうか?
方法

@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
centerTitle: false,
title: Text("Title"),
),
body: Center(),
);
}
AppBarのタイトルを左に寄せるには、引数「centerTitle」に「false」を指定します。
コメント