audio_helper 0.1.0 copy "audio_helper: ^0.1.0" to clipboard
audio_helper: ^0.1.0 copied to clipboard

Help you easier to add sounds and background music to your games or apps.

Audio Helper #

Help you easier to add sounds and background music to your games or apps.

Usage #

Default path of the asset files:

flutter:
  assets:
    # Backgound music path 
    - assets/audio/music/name1.mp3
    - assets/audio/music/name2.mp3
    
    # Sound path
    - assets/audio/sound/sound.mp3

Initialize the plugin:

await AudioHelper.initial(
    backgroundMusicNames: ['name1.mp3','name2.mp3'],
);

Play & stop background music:

/// Play
AudioHelper.playMusic();

/// Stop
AudioHelper.stopMusic();

Play sound:

AudioHelper.playSound('sound.mp3');

Notice: I've only tested this plugin on my real project, so it doesn't have any examples or tests yet.

3
likes
150
pub points
60%
popularity

Publisher

verified publisherlamnhan.dev

Help you easier to add sounds and background music to your games or apps.

Repository (GitHub)
View/report issues

Documentation

API reference

License

GPL-3.0 (license)

Dependencies

flutter, just_audio

More

Packages that depend on audio_helper