'실행'버튼 밑에 '정지'버튼을 만들어서 시간 초기화를 하는기능을 추가하는 code challenge가 주어졌다.어렵지 않다. void reset() { timer.cancel(); setState(() { isRunning = false; totalSeconds = twentyFiveMinutes; }); }이렇게 reset 함수를 추가해주고...실행하고 있는 것들을 모두 멈춰줘야 한다는 사실을 잊지 말자. Center( child: IconButton( iconSize: 60, color: Theme.of(context).cardCo..