Skip to content

WangYng/better_sound_effect

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

better_sound_effect

A Sound Effect Player for Flutter.

Install Started

  1. Add this to your pubspec.yaml file:
dependencies:
  better_sound_effect: ^0.0.3
  1. 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

  • play asset sound effect
  • only support wav file

About

A Sound Effect Player for Flutter.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published