Flutter アイコンボタンを無効にするサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
onPressed: null,
アイコンボタンを無効にするには、引数「onPressed」に「null」を指定します。
使用例
IconButton(
onPressed: null,
icon: Icon(Icons.add_a_photo),
)
IconButton(
onPressed: null,
icon: Icon(Icons.add_a_photo),
)
IconButton( onPressed: null, icon: Icon(Icons.add_a_photo), )