Microsoft Security | Intune | Microsoft Intune Android
Managing Android devices using Microsoft Intune
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
hey
i try to play wav. file in visual studio ,but that file can not play.how can fix that
void playSound(int soundNumber) {
final player = AudioPlayer();
player.setSource(AssetSource('note$soundNumber.wav'));
}
TextButton(
child: const Text(
'click me',
style: TextStyle(
backgroundColor: Colors.red,
color: Colors.black,
),
),
onPressed: () {
playSound(1);
},