better_sound_effect
A Sound Effect Player for Flutter.
Install Started
- Add this to your pubspec.yaml file:
dependencies:
better_sound_effect: ^0.0.2
- Install it
$ flutter packages get
Normal usage
int? soundId;
@override
void initState() {
super.initState();
Future.microtask(() async {
soundId = await soundEffect.loadAssetAudioFile("assets/button.wav");
});
}
@override
void dispose() {
if (soundId != null) {
soundEffect.release(soundId!);
}
super.dispose();
}
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: const Text('Plugin example app'),
),
body: Center(
child: CupertinoButton(
child: Text("click"),
onPressed: () {
if (soundId != null) {
soundEffect.play(soundId!);
}
},
),
),
),
);
}
Feature
x
play asset sound effectx
only support wav file