background_geolocation 0.0.1 background_geolocation: ^0.0.1 copied to clipboard
The most sophisticated background location-tracking & geofencing module with battery-conscious motion-detection intelligence for iOS and Android.
import 'package:flutter/material.dart';
import 'package:shared_preferences/shared_preferences.dart';
import 'package:background_geolocation/flutter_background_geolocation.dart' as bg;
import 'package:background_fetch/background_fetch.dart';
import 'package:background_geolocation_example/app.dart';
import 'advanced/app.dart';
import 'hello_world/app.dart';
/// Receive events from BackgroundGeolocation in Headless state.
void backgroundGeolocationHeadlessTask(bg.HeadlessEvent headlessEvent) async {
print('📬 --> $headlessEvent');
switch(headlessEvent.name) {
case bg.Event.TERMINATE:
try {
bg.Location location = await bg.BackgroundGeolocation.getCurrentPosition(samples: 1);
print('[getCurrentPosition] Headless: $location');
} catch (error) {
print('[getCurrentPosition] Headless ERROR: $error');
}
break;
case bg.Event.HEARTBEAT:
try {
bg.Location location = await bg.BackgroundGeolocation.getCurrentPosition(samples: 1);
print('[getCurrentPosition] Headless: $location');
} catch (error) {
print('[getCurrentPosition] Headless ERROR: $error');
}
break;
case bg.Event.LOCATION:
bg.Location location = headlessEvent.event;
break;
case bg.Event.MOTIONCHANGE:
bg.Location location = headlessEvent.event;
break;
case bg.Event.GEOFENCE:
bg.GeofenceEvent geofenceEvent = headlessEvent.event;
break;
case bg.Event.GEOFENCESCHANGE:
bg.GeofencesChangeEvent event = headlessEvent.event;
break;
case bg.Event.SCHEDULE:
bg.State state = headlessEvent.event;
break;
case bg.Event.ACTIVITYCHANGE:
bg.ActivityChangeEvent event = headlessEvent.event;
break;
case bg.Event.HTTP:
bg.HttpEvent response = headlessEvent.event;
break;
case bg.Event.POWERSAVECHANGE:
bool enabled = headlessEvent.event;
break;
case bg.Event.CONNECTIVITYCHANGE:
bg.ConnectivityChangeEvent event = headlessEvent.event;
break;
case bg.Event.ENABLEDCHANGE:
bool enabled = headlessEvent.event;
break;
}
}
/// Receive events from BackgroundFetch in Headless state.
void backgroundFetchHeadlessTask() async {
// Get current-position from BackgroundGeolocation in headless mode.
bg.Location location = await bg.BackgroundGeolocation.getCurrentPosition(samples: 1);
print('[BackgroundFetch] HeadlessTask, location: $location');
SharedPreferences prefs = await SharedPreferences.getInstance();
int count = 0;
if (prefs.get("fetch-count") != null) {
count = prefs.getInt("fetch-count");
}
prefs.setInt("fetch-count", ++count);
print('[BackgroundFetch] count: $count');
BackgroundFetch.finish();
}
void main() {
/// Application selection: Select the app to boot:
/// - AdvancedApp
/// - HelloWorldAp
/// - HomeApp
///
SharedPreferences.getInstance().then((SharedPreferences prefs) {
String appName = prefs.getString("app");
switch(appName) {
case AdvancedApp.NAME:
runApp(new AdvancedApp());
break;
case HelloWorldApp.NAME:
runApp(new HelloWorldApp());
break;
default:
// Default app. Renders the application selector home page.
runApp(new HomeApp());
}
});
/// Register BackgroundGeolocation headless-task.
bg.BackgroundGeolocation.registerHeadlessTask(backgroundGeolocationHeadlessTask);
/// Register BackgroundFetch headless-task.
BackgroundFetch.registerHeadlessTask(backgroundFetchHeadlessTask);
}