Skip to content

Latest commit

 

History

History
28 lines (16 loc) · 643 Bytes

File metadata and controls

28 lines (16 loc) · 643 Bytes

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.