FlutterのIconButton
最終更新日:2023-10-05
Flutter の IconButton を使うと、アイコンをボタン化できます。
ボタンが押されたら、onPressed 関数が呼び出されます。null の場合、ボタンは無効になり、タッチに反応しなくなります。
IconButton(
icon: const Icon(Icons.account_circle),
onPressed: () {
// ボタンが押された時の処理
},
)
最終更新日:2023-10-05
Flutter の IconButton を使うと、アイコンをボタン化できます。
ボタンが押されたら、onPressed 関数が呼び出されます。null の場合、ボタンは無効になり、タッチに反応しなくなります。
IconButton(
icon: const Icon(Icons.account_circle),
onPressed: () {
// ボタンが押された時の処理
},
)