Flutter アイコンボタンを無効にするサンプル

環境
Windows11 pro 64bit
Flutter 3.3.7

構文
onPressed: null,
アイコンボタンを無効にするには、引数「onPressed」に「null」を指定します。

使用例

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
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),
)

 

Flutter

Posted by arkgame