Flutter Icons.timerを使ってタイマーのアイコンを表示するサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
child: Icon(Icons.timer)
タイマーのアイコンを表示するには、Icons.timerを使います。
使用例
@override Widget build(BuildContext context) { return Scaffold( body: Center( child: Icon(Icons.timer), ), ); }