이번에는 시간이 다 줄어들면 Pomodoros밑에 있는 숫자가 하나씩 커지도록 할 것이다.1. void onTick(Timer timer) { // 0초가 되면... if (totalSeconds == 0) { // Pomodoro 숫자 증가 + 초기화 setState(() { totalPomodoros = totalPomodoros + 1; isRunning = false; totalSeconds = twentyFiveMinutes; }); timer.cancel(); } else { // state 변경 setState(() { totalSeconds = totalSeconds -..