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

Flutter plugin for getting accurate locations on the Android & iOS devices.

example/lib/main.dart

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

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

void main() => runApp(new MyApp());

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

class _MyAppState extends State<MyApp> {
  String _result = 'Unknown';

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

  /*
  *  Method :- _getLocation
  *  Return Type : void
  *  Parameters :
  *
  *
  * This method will invoke Location Plugin and will give a Map Object in response.
  * */

  Future<void> _getLocation() async
  {
    Map<dynamic, dynamic> locationMap;

    String result;

    try {
      locationMap = await FlutterLocationPlugin.getLocation;
      print("Message From main.dart - Got Response $locationMap");
      var status = locationMap["status"];
      if((status is String && status == "true") || (status is bool) && status) {

        var lat = locationMap["latitude"];
        var lng = locationMap["longitude"];

        if(lat is String) {
          result = "Location: ($lat, $lng)";
        } else {
          // lat and lng are not string, you need to check the data type and use accordingly.
          // it might possible that else will be called in Android as we are getting double from it.
          result = "Location: ($lat, $lng)";
        }

      } else {
        result = locationMap["message"];
      }

    } on PlatformException {

      result = 'Failed to get location';
    }

    if (!mounted) return;

    setState(() {
      _result = result;
    });
  }

  @override
  Widget build(BuildContext context) {
    return new MaterialApp(
      debugShowCheckedModeBanner: false,
      home: new Scaffold(
        appBar: new AppBar(
          title: const Text('Plugin location app'),
        ),
        body: new Center(
          child: new Text('$_result'),
        ),
      ),
    );
  }
}
0
likes
20
pub points
25%
popularity

Publisher

unverified uploader

Flutter plugin for getting accurate locations on the Android & iOS devices.

Homepage

Documentation

Documentation

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on flutter_location_plugin