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

watchOS implementation of the geolocator plugin, providing position and permission handling from CoreLocation (CLLocationManager) via dart:ffi.

geolocator_watchos #

The watchOS implementation of geolocator.

Location comes from CoreLocation (CLLocationManager) over dart:ffi: a delegate caches the latest fix and the Dart side polls it.

Scaffolded by flutter-watchos plugin port from geolocator_apple, then implemented and verified by hand.

Usage #

This is a federated plugin implementation. Apps that already depend on geolocator and target watchOS only need to add this package alongside it:

dependencies:
  geolocator: ^<latest>
  geolocator_watchos: ^0.0.1

The plugin registers automatically via Flutter's federated registry — no explicit imports required from app code.

Add a location usage description to the watch app's Info.plist:

<key>NSLocationWhenInUseUsageDescription</key>
<string>Explain why your app needs location.</string>

Behaviour on watchOS #

Method watchOS
checkPermission / requestPermission supported (when-in-use)
isLocationServiceEnabled supported
getCurrentPosition / getPositionStream supported
getLastKnownPosition supported (last cached fix)
openAppSettings / openLocationSettings not available on watchOS
getServiceStatusStream not implemented

The watch has no Always background-location entitlement flow that iOS has; authorization is when-in-use.

Status #

Platform Implemented
Apple Watch (watchos) yes
Watch simulator (watchsimulator) query methods verified; live fixes need a simulated location

The example is geolocator's own upstream Baseflow demo, ported verbatim. That demo ships no integration_test/, so this package is verified by building and running the example on the watch simulator; the interactive permission prompt and live position updates are verified on a physical Apple Watch.

License #

The FlutterWatch Authors under a BSD-3-Clause license. See LICENSE for the full text.

0
likes
140
points
109
downloads

Documentation

API reference

Publisher

verified publisherflutterwatch.dev

Weekly Downloads

watchOS implementation of the geolocator plugin, providing position and permission handling from CoreLocation (CLLocationManager) via dart:ffi.

Homepage
Repository (GitHub)
View/report issues

Topics

#watchos #ffi #location #geolocation

License

MIT (license)

Dependencies

ffi, flutter, geolocator_platform_interface

More

Packages that depend on geolocator_watchos

Packages that implement geolocator_watchos