Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
4.5k views
Welcome To Ask or Share your Answers For Others

1 Answer

You can use this plugin permission_handler

Use below method to open App Settings

PermissionHandler().openAppSettings();

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...