ryanheise / audio_session

MIT License
115 stars 81 forks source link

turn off music when in background #15

Closed abraraltaf92 closed 3 years ago

abraraltaf92 commented 3 years ago

I am using just_audio to play music in flutter app on android but its playing even when app is in background like I want to pause the music whenever I m outside of the app and continue when I m into the app again . I m unable to find any option. Any help ?

abraraltaf92 commented 3 years ago

used Flame.bg.play()

ryanheise commented 3 years ago

Hi @abraraltaf92 audio_sesson isn't responsible for playing audio, but if you request it as a feature on just_audio, I will implement it. Note that you could already do this with just_audio by listening to flutter lifecycle events and then call the play/pause methods on receiving the appropriate events, however there may be benefits to providing this feature natively in just_audio in terms of responsiveness. That is, to get an immediate response from the player.