audio_focus 0.0.1 copy "audio_focus: ^0.0.1" to clipboard
audio_focus: ^0.0.1 copied to clipboard

A new Flutter plugin for managing audio focus

audio_focus #

A new Flutter plugin for managing audio focus

Getting Started #

Using a Media Playing Plugin, start playing an audio file. Android Only

Usage #

AudioFocus audioFocus = AudioFocus();

audioFocus.audioFocusEvents.listen((focusEvent) { if (focusEvent == AudioState.AUDIOFOCUS_GAIN) { //Do Something } else if (focusEvent == AudioState.BECOME_NOISY) { //Do Something } else if (focusEvent == AudioState.AUDIOFOCUS_GAIN_TRANSIENT_MAY_DUCK) { //Do Something }else if(focusEvent == AudioState.AUDIOFOCUS_LOSS_TRANSIENT){ //Do Something } });

Audio States #

BECOME_NOISY, AUDIOFOCUS_GAIN, AUDIOFOCUS_GAIN_TRANSIENT, AUDIOFOCUS_GAIN_TRANSIENT_MAY_DUCK, AUDIOFOCUS_LOSS, AUDIOFOCUS_LOSS_TRANSIENT, AUDIOFOCUS_LOSS_TRANSIENT_CAN_DUCK, AUDIOFOCUS_REQUEST_FAILED

This project is a starting point for a Flutter plug-in package, a specialized package that includes platform-specific implementation code for Android.

For help getting started with Flutter, view our online documentation, which offers tutorials, samples, guidance on mobile development, and a full API reference.

1
likes
10
pub points
13%
popularity

Publisher

unverified uploader

A new Flutter plugin for managing audio focus

Homepage

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on audio_focus