From c0eec7e23dd23304780045ac6e6ff440b5daf6c7 Mon Sep 17 00:00:00 2001 From: Parricc35 <63447810+Parricc35@users.noreply.github.com> Date: Wed, 22 Feb 2023 13:23:17 +0100 Subject: [PATCH] I dont get it but it is working with loop --- lib/pages/interval_page.dart | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/pages/interval_page.dart b/lib/pages/interval_page.dart index 973c269..3a7eabf 100644 --- a/lib/pages/interval_page.dart +++ b/lib/pages/interval_page.dart @@ -89,6 +89,7 @@ class _IntervalTimerPageState extends State { Future _playWorkoutMusic() async { await warmUpPlayer.stop(); Future.delayed(const Duration(microseconds: 600)).then((value) async { + await workoutPlayer.setReleaseMode(ReleaseMode.loop); await workoutPlayer.play(UrlSource('assets/workout.mp3')); }); } @@ -124,6 +125,7 @@ class _IntervalTimerPageState extends State { _currentDuration = _cooldownDuration; () async { await workoutPlayer.stop(); + await coolDownPlayer.setReleaseMode(ReleaseMode.loop); await coolDownPlayer.play(UrlSource('assets/cool_down.mp3')); }(); } else {