I dont get it but it is working with loop

main
Parricc35 2023-02-22 13:23:17 +01:00
parent 37b941cdd1
commit c0eec7e23d
1 changed files with 2 additions and 0 deletions

View File

@ -89,6 +89,7 @@ class _IntervalTimerPageState extends State<IntervalTimerPage> {
Future<void> _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<IntervalTimerPage> {
_currentDuration = _cooldownDuration;
() async {
await workoutPlayer.stop();
await coolDownPlayer.setReleaseMode(ReleaseMode.loop);
await coolDownPlayer.play(UrlSource('assets/cool_down.mp3'));
}();
} else {