Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Flutter: Open iOS iPhone Settings page

Tags:

flutter

dart

Is there any way to open Location settings page in iOS using flutter? I don't want a native solution.


2 Answers

I've used this package, does the job so far: https://pub.dev/packages/app_settings

AppSettings.openLocationSettings()
like image 118
Nick Ponomar Avatar answered Dec 10 '25 23:12

Nick Ponomar


As @Nick Ponomar mentioned, App Settings package from pub.dev is a great choice.

I just want to mention that it also offers openAppSettings method, which leads you to the settings screen/page for your app (i.e. the one that called the method openAppSettings). That settings screen contains all permission which your app requested since it was installed, whether they are enabled or disabled.

Example of app settings screen for WhatsApp: Example of app settings screen - from techknowzone.com

like image 45
Aleksandar Avatar answered Dec 10 '25 22:12

Aleksandar