Reputation: 885
I want to play the sound effect when I go to next page. Is it possible do in flutter? If can, can I know how to do it?
Upvotes: 0
Views: 156
Reputation: 491
If you are looking for a way to play sound in Flutter, head over here
Code: AssetsAudioPlayer.newPlayer().open(Audio("assets/audios/song1.mp3"),);
Upvotes: 1