another_headset_event 0.0.7 copy "another_headset_event: ^0.0.7" to clipboard
another_headset_event: ^0.0.7 copied to clipboard

Detect headset plugged, unplugged.

Headset Event Flutter Plugin #

Another plugin for headset_event. It fixes a bug for swift build issues.

A Flutter plugin to get a headset event.

Migrated to AndroidX

Usage #

To use this plugin, add headset_event as a dependency in your pubspec.yaml file.

Example #

    // Import package
    import 'package:headset_event/headset_event.dart';

    // Instantiate it
    HeadsetEvent headsetPlugin = new HeadsetEvent();
    HeadsetState headsetEvent;

    /// if headset is plugged
    headsetPlugin.getCurrentState.then((_val){
      setState(() {
        headsetEvent = _val;
      });
    });

    /// Detect the moment headset is plugged or unplugged
    headsetPlugin.setListener((_val) {
      setState(() {
        headsetEvent = _val;
      });
    });
0
likes
30
pub points
0%
popularity

Publisher

unverified uploader

Detect headset plugged, unplugged.

Repository (GitHub)
View/report issues

License

BSD-3-Clause (LICENSE)

Dependencies

flutter, meta, mockito

More

Packages that depend on another_headset_event