Настройте параметры местоположения для iOS следующим образом:
Код: Выделить всё
_locationSettings = AppleSettings(
accuracy: LocationAccuracy.high,
activityType: ActivityType.fitness,
distanceFilter: 100,
pauseLocationUpdatesAutomatically: true,
// Only set to true if our app will be started up in the background.
showBackgroundLocationIndicator: false,
);
Future _updateLocationStatus() async {
_positionStream = Geolocator.getPositionStream(locationSettings: _locationSettings)
.listen((position) {
debugPrint("Position: Latitude: ${position.latitude}, Longitude: ${position.longitude}");
});
}
В Android:
[img]https:// i.sstatic.net/feQx9z6t.jpg[/img]
В iPhone:

Подробнее здесь: https://stackoverflow.com/questions/792 ... in-flutter