enable timer to replay music

main
Julian Gegner 2023-02-21 23:28:31 +01:00
parent 4700f52646
commit 37b941cdd1
1 changed files with 5 additions and 5 deletions

View File

@ -60,9 +60,9 @@ class _IntervalTimerPageState extends State<IntervalTimerPage> {
void _resetTimer() { void _resetTimer() {
() async { () async {
await coolDownPlayer.dispose(); await coolDownPlayer.stop();
await warmUpPlayer.dispose(); await warmUpPlayer.stop();
await workoutPlayer.dispose(); await workoutPlayer.stop();
}(); }();
_isPaused = true; _isPaused = true;
_timer?.cancel(); _timer?.cancel();
@ -87,7 +87,7 @@ class _IntervalTimerPageState extends State<IntervalTimerPage> {
} }
Future<void> _playWorkoutMusic() async { Future<void> _playWorkoutMusic() async {
await warmUpPlayer.dispose(); await warmUpPlayer.stop();
Future.delayed(const Duration(microseconds: 600)).then((value) async { Future.delayed(const Duration(microseconds: 600)).then((value) async {
await workoutPlayer.play(UrlSource('assets/workout.mp3')); await workoutPlayer.play(UrlSource('assets/workout.mp3'));
}); });
@ -123,7 +123,7 @@ class _IntervalTimerPageState extends State<IntervalTimerPage> {
_currentBlock++; _currentBlock++;
_currentDuration = _cooldownDuration; _currentDuration = _cooldownDuration;
() async { () async {
await workoutPlayer.dispose(); await workoutPlayer.stop();
await coolDownPlayer.play(UrlSource('assets/cool_down.mp3')); await coolDownPlayer.play(UrlSource('assets/cool_down.mp3'));
}(); }();
} else { } else {