Wege
Wege
I think your problems is that: 1. You cannot set all Firebase setup inside the callbackDispatcher. You have to set it up at function main(). 2. Make a separate class...
@suragch I didn't know how to put variable Random inside the ConcatenatingAudioSource since it gave me an error.
@suragch I think the Shuffle method from just_audio works the same way VLC works. I think maybe the main problem is located in how to implement this and combine it...
@suragch If you find out a way to implement it in the latest audio_service, please let me know. Thank you.
@suragch Actually, ryanheise just updated the example_playlist.dart in audio_service 0.18.0 and he added Shuffle function with working Loop All. I wonder if you can implement it in your tutorial? #https://github.com/ryanheise/audio_service/issues/774
@suragch If you want to learn the complete fixed of shuffle playlist with loop all are active based on above example, you can visit my repository below: [link](https://github.com/gOzaru/audio_player_final)
@suragch Do you know how to convert these lines of code into PlaylistRepository like yours in the tutorial: ```dart class MediaLibrary { static const albumsRootId = 'albums'; final items =...
No need. I found this as the best solution: ```dart class MediaLibrary { static const albumsRootId = 'albums'; final audioHandler = getIt(); int status = -1; late final Map items;...