Skip to content

Instantly share code, notes, and snippets.

@shameemreza
Created September 29, 2020 08:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shameemreza/cd04fa98335221a6638db833d40e9319 to your computer and use it in GitHub Desktop.
Save shameemreza/cd04fa98335221a6638db833d40e9319 to your computer and use it in GitHub Desktop.
void _getCurrentLocation() async {
final postion = await Geolocator()
.getCurrentPosition(desiredAccuracy: LocationAccuracy.high);
final lastPosition = await Geolocator().getLastKnownPosition();
print("last Position = ${lastPosition}");
setState(() {
_locationMessage = "${postion.latitude} , ${postion.longitude}";
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment