react-native-sound
react-native-sound copied to clipboard
Multiple sounds are running
How can i stop the playing of multiple audio at same time ? react- native [Android-iOS]
i believe each audio is a seperate instance of the Sound class. so you will have to keep track of your instances then run .pause()
or .stop()
on each of them to stop all audio files together
But How??