Bigyan Ghimire
Bigyan Ghimire

Reputation: 39

Open enable location app settings in flutter

In case of Location Permission denied forever, I want to lead user to permission settings for them to enable the location permission for flutter. I used app_settings library and also system_settings but both of them lead to the enable location screen and not the permission screen itself. I am using location package and it is not internally provided in the package. Is there any way to open app specific permission settings in flutter in order to properly lead users to enable location in case of permission denied forever?

Upvotes: 0

Views: 4615

Answers (1)

Jaimil Patel
Jaimil Patel

Reputation: 1347

You can use this plugin permission_handler

Use below method to open App Settings

PermissionHandler().openAppSettings();

Upvotes: 3

Related Questions