void onChangeMinute(int high, int low) { setState(() { currentSeconds += high * 10 * 60 + low * 60; updateClock(); }); }