[Flutter]AppBarの左側にウェジェットを配置するには?

Flutter

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

AppBarの左側にウェジェットを配置するには、どうしたらいいのでしょうか?

スポンサーリンク

方法

  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        leading: Icon(Icons.android), //AppBarの左側
        title: Text('Hello'),
      ),
      body: Center(
           ・・・
      ),
    );
  }

AppBarの左側にウェジェットを配置するには、引数「leading」を使います。

「leading」に配置するウェジェットを指定することで、AppBarの左にウェジェットが表示されます。

ただ、注意点として、leadingに指定できるウェジェットは、「Icon」もしくは「IconButton」のみとなっています。

コメント

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