How to turn on device GPS in flutter?
you can user location library
var location = Location();
Future checkGps() async {
if (!await location.serviceEnabled()) {
location.requestService();
}
}
This Plugin shows the Turn on Gps Dialogue for flutter (as like the Native android)