qing
qing

Reputation: 885

How to play the sound effect play when page change in Flutter

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

Answers (1)

Pratyush Tiwari
Pratyush Tiwari

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

Related Questions