MENU

【Flutter】AppBarのleadingの幅を変更する方法

記事内に商品プロモーションが含まれる場合があります

AppBarのleading幅は固定で56が設定されているため、それ以上の幅のものを表示しようとすると警告がでます。

目次

leadingの幅を変更する方法

leadingの幅を変更するには、leadingWidthに値を指定します。

AppBar(
  leadingWidth: 100,
  leading: GestureDetector(
      onTap: null,
      child: Column(
        children: [
          Icon(Icons.settings),
          Text("settings")
        ],
      ),
    ),
)

Flutterが学べる書籍

Share

Comment

コメントする

目次