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

耳机状态监听,包括有线耳机和蓝牙耳机。获取当前耳机状态,监听耳机并实时获取状态。

example/lib/main.dart

import 'package:flutter/material.dart';
import 'dart:async';

import 'package:flutter/services.dart';
import 'package:headset_detection_status/headset_detection_status.dart';

void main() {
  runApp(MyApp());
}

class MyApp extends StatefulWidget {
  @override
  _MyAppState createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  String _platformVersion = 'Unknown';
  HeadsetState state = HeadsetState();

  final HeadsetDetect _headsetDetect = HeadsetDetect();
  StreamSubscription<HeadsetState> _subscription;

  @override
  void initState() {
    super.initState();
    initPlatformState();
    _subscription =
        _headsetDetect.onHeadsetStateChanged.listen(_updateHeadsetState);
  }

  @override
  void dispose() {
    _subscription.cancel();
    super.dispose();
  }

  Future<void> initPlatformState() async {
    HeadsetState result;
    try {
      result = await _headsetDetect.checkHeadset();
    } on PlatformException {}
    if (!mounted) return;

    _updateHeadsetState(result);
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Headset Plugin example app'),
        ),
        body: Center(
            child: Column(
          mainAxisAlignment: MainAxisAlignment.center,
          children: <Widget>[
            Text('Version : $_platformVersion\n'),
            Text('有线耳机状态:'),
            Row(
              mainAxisAlignment: MainAxisAlignment.center,
              children: [
                Icon(
                  Icons.headset,
                  color: this.state.wired == HeadsetStateEnum.CONNECTED
                      ? Colors.green
                      : Colors.red,
                ),
                Text('  ${state.wired} '),
              ],
            ),
            Text('蓝牙耳机状态:'),
            Row(
              mainAxisAlignment: MainAxisAlignment.center,
              children: [
                Icon(
                  Icons.bluetooth,
                  color: this.state.bluetooth == HeadsetStateEnum.CONNECTED
                      ? Colors.green
                      : Colors.red,
                ),
                Text('    ${state.bluetooth}'),
              ],
            ),
          ],
        )),
      ),
    );
  }

  Future<void> _updateHeadsetState(HeadsetState result) async {
    print(
        '==>_updateHeadsetState wired:${result.wired} bluetooth:${result.bluetooth}');
    setState(() => state = result);
  }
}
0
likes
25
pub points
0%
popularity

Publisher

unverified uploader

耳机状态监听,包括有线耳机和蓝牙耳机。获取当前耳机状态,监听耳机并实时获取状态。

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on headset_detection_status