AppBarのleading幅は固定で56が設定されているため、それ以上の幅のものを表示しようとすると警告がでます。
目次
leadingの幅を変更する方法
leadingの幅を変更するには、leadingWidthに値を指定します。
AppBar(
leadingWidth: 100,
leading: GestureDetector(
onTap: null,
child: Column(
children: [
Icon(Icons.settings),
Text("settings")
],
),
),
)
Comment