flutterlocation icon indicating copy to clipboard operation
flutterlocation copied to clipboard

A Flutter plugin to easily handle realtime location in iOS and Android. Provides settings for optimizing performance or battery.

Results 219 flutterlocation issues
Sort by recently updated
recently updated
newest added

**Is your feature request related to a problem? Please describe.** Looking up for the string name of an icon is hard and useless when flutter has inbuild Icons that we...

**Describe the bug** Location retrieval fails when using mock locations **Expected behavior** Get location updates as normal with additional flag to mention mocked **Tested on:** - Huawei P30 lite -...

**Describe the bug** On devices such as iPhone, Xiaomi, and Huawei, `**await location.getLocation();**` can return the longitude and latitude normally. But on Vivo devices, the longitude and latitude cannot be...

The example under "Usage" is expired: ```Location location = new Location(); bool _serviceEnabled; PermissionStatus _permissionGranted; LocationData _locationData; _serviceEnabled = await location.serviceEnabled(); if (!_serviceEnabled) { _serviceEnabled = await location.requestService(); if (!_serviceEnabled)...

**Describe the bug** If I start the location tracking with .onLocationChanged.listen it will only track for about two hours on iOS. After that the location just stops. The same code...

Hello, Flutter is migrating to [Swift Package Manager][]. Please [add Swift Package Manager support][] to your plugin. Flutter will eventually deprecate and then remove support for CocoaPods. Adding Swift Package...

It would be useful to have the ability to automatically have the interval change when an app switches between background and foreground.

**Describe the bug** I have a flutter code base which asks for location authorization and which displays this on a google map, on an android device I manage to display...

This method can cause UI unresponsiveness if invoked on the main thread. Instead, consider waiting for the `-locationManagerDidChangeAuthorization:` callback and checking `authorizationStatus` first