# system_settings **Repository Path**: mirrors_libs/system_settings ## Basic Information - **Project Name**: system_settings - **Description**: No description available - **Primary Language**: Dart - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-11-22 - **Last Updated**: 2024-11-22 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # system_settings ![Build](https://github.com/fweinaug/system_settings/workflows/Build/badge.svg) [![pub package](https://img.shields.io/pub/v/system_settings.svg)](https://pub.dev/packages/system_settings) [![license](https://img.shields.io/badge/license-MIT-green)](https://github.com/fweinaug/system_settings/blob/master/LICENSE) 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: ```yaml dependencies: system_settings: 2.1.0 ``` Next, import the package into your dart code: ```dart import 'package:system_settings/system_settings.dart'; ``` ## Example Example which opens the app settings: ```dart Widget build(BuildContext context) { return RaisedButton( onPressed: SystemSettings.app, child: Text('Open app settings'), ); } ``` ## Bugs and feature requests Have a bug or a feature request? Please first search for existing and closed issues. If your problem or idea is not addressed yet, [please open a new issue](https://github.com/fweinaug/system_settings/issues/new). ## Copyright & License Code copyright 2020–2022 Florian Weinaug. Code released under the [MIT license](https://github.com/fweinaug/system_settings/blob/master/LICENSE).