huawei_location_mx 0.0.2 copy "huawei_location_mx: ^0.0.2" to clipboard
huawei_location_mx: ^0.0.2 copied to clipboard

Huawei location plugin

huawei_location #

Huawei Location Plugin

A Flutter plugin for Android allowing access to location with Huawei.

Installation #

First, add huaweilocation as a dependency in your pubspec.yaml file.

dependencies:
  huawei_location: <latest_version>

Example #

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

class _MyAppState extends State<MyApp> {
  String _message = 'Unknown';
  Huaweilocation _huaweilocation;

  @override
  void initState() {
    super.initState();
    initHuaweiLocation();
  }

  void initHuaweiLocation() async {

    _huaweilocation = new Huaweilocation();
    _huaweilocation.updateLocation().listen((huaweilatlng) {
      setState(() {
        switch(huaweilatlng.code){
          case Huaweilocation.LOCATION_SUCCESS:
            _message = "Latitud: " + huaweilatlng.latitude.toString() + " Longitude" + huaweilatlng.longitude.toString();
            break;

          case Huaweilocation.LOCATION_ERROR:
            _message = huaweilatlng.message;
            break;

          case Huaweilocation.LOCATION_REQUEST_UPDATE_SUCCESS:
            _message = huaweilatlng.message;
            break;

          case Huaweilocation.LOCATION_REQUEST_UPDATE_ERROR:
            _message = huaweilatlng.message;
            break;

          case Huaweilocation.LOCATION_REMOVE_UPDATE:
            _message = huaweilatlng.message;
            break;

          case Huaweilocation.LOCATION_REMOVE_UPDATE_ERROR:
            _message = huaweilatlng.message;
            break;

        }
      });
    });

    _huaweilocation.requestLocationUpdates();
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Plugin example app'),
        ),
        body: Center(
          child: Text('$_message\n'),
        ),
      ),
    );
  }
}

Demo #

Please run the app in the example/ folder

Note #

This plugin is still under development

0
likes
30
pub points
0%
popularity

Publisher

unverified uploader

Huawei location plugin

Repository (GitHub)
View/report issues

License

BSD-3-Clause (LICENSE)

Dependencies

flutter

More

Packages that depend on huawei_location_mx