/flocation

(WIP)Flutter Plugin for Location services

Primary LanguageDartBSD 3-Clause "New" or "Revised" LicenseBSD-3-Clause

flocation

A Flutter plugin to access the gps location events.

Usage

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

Example

import 'package:flocation/flocation.dart';

Flocation.locationEvents.listen((LocationEvent event) {
 // Do something with the event.
});

(Currently only Android has the native side filled in.)

General Flutter Help

For help getting started with Flutter, view our online documentation.

For help on editing plugin code, view the documentation.