flutter_background_location 0.0.4 copy "flutter_background_location: ^0.0.4" to clipboard
flutter_background_location: ^0.0.4 copied to clipboard

discontinuedreplaced by: location

A Flutter plugin to get location updates when application is in background.

Flutter Background Location #

A Flutter plugin to get location updates in the background for both Android and iOS. Uses CoreLocation for iOS and FusedLocationProvider for Android

  • iOS implementation credit goes to Ali Almoullim (@almoullim)

Getting Started #

1: Add this to your package's pubspec.yaml file:

dependencies:
  flutter_background_location: ^0.0.4

2: Install packages from the command line:

$ flutter packages get

Alternatively, your editor might support flutter packages get. Check the docs for your editor to learn more.

How to use #

Import the package where you wanna use it.

import 'package:flutter_background_location/flutter_background_location.dart';

Start the location service. This will also ask the user for permission if not asked previously by another package.

FlutterBackgroundLocation.startLocationService();

getLocationUpdates will trigger everytime the location updates on the device. Provide a callback function to getLocationUpdates to handle location update.

FlutterBackgroundLocation.getLocationUpdates((location) {
  print(location);
});

location is a Class exposing the following properties.

double latitude;
double longitude;
double altitude;
double bearing;
double accuracy;
double speed;

To stop listening to location changes you can execute.

BackgroundLocation.stopLocationService();

Example #

Complete working application Example

Todo #

  • Add support for manually asking for permission.
  • Add support for checking the permission status.
  • Add support for getting the last location once without listening to location updates.
  • Add support for chosing the rate at the which the location is fetched based on time and distance.
10
likes
20
pub points
40%
popularity

Publisher

verified publisherevendor.pk

A Flutter plugin to get location updates when application is in background.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on flutter_background_location