I’m working on a Flutter mobile application where I need to provide users with a shortcut to the device’s Date & Time settings when they press a button. For the iOS version of the app, I am considering opening the settings URL directly with something like:
const url="App-Prefs:root=General&path=DATE_AND_TIME";
However, I am unsure if this approach is compliant with Apple’s App Store Review Guidelines. Specifically, I have concerns about whether using such a URL scheme to directly navigate to the system settings might lead to rejection during the app review process.
Does anyone have experience with this type of functionality in a published iOS app? Is there a recommended or safer way to achieve similar functionality without risking app store rejection?
Any guidance or insights on navigating to iOS system settings from a Flutter app, while ensuring compliance with App Store policies, would be greatly appreciated.