[Flutter] IconButton

Bumhyeon Baek·2023년 5월 9일
0

Flutter

목록 보기
6/14

IconButton

Icons are not interactive. An icon button is a picture printed on a Material widget that reacts to touches by filling with color (ink).

IconButton(
  icon: const Icon(Icons.volume_up),
  tooltip: 'Increase volume by 10',
  onPressed: () {
    setState(() {
      _volume += 10;
    });
  },
),
profile
Cool Leader

0개의 댓글