system_settings 1.0.0 copy "system_settings: ^1.0.0" to clipboard
system_settings: ^1.0.0 copied to clipboard

outdated

Flutter plugin to open system and app settings on iOS and Android.

system_settings #

Flutter plugin to open system and app settings from an iOS and Android app.

On Android, this plugin supports various system setting pages as well as the app info and app notification settings page.

On iOS, this plugin will always open the app settings page, if any settings have been defined via a SettingsBundle. If not, the settings app will open with the home page. Unfortunately, this is the only way that complies with Apple's guidelines for the App Store.

Getting Started #

Add this to your package's pubspec.yaml file:

dependencies:
  system_settings: 1.0.0

Next, import the package into your dart code:

import 'package:system_settings/system_settings.dart';

Example #

Example which opens the app settings:

Widget build(BuildContext context) {
    return RaisedButton(
        onPressed: SystemSettings.app,
        child: Text('Open app settings'),
    );
}
62
likes
0
pub points
95%
popularity

Publisher

unverified uploader

Flutter plugin to open system and app settings on iOS and Android.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on system_settings