# system_setting **Repository Path**: philos/system_setting ## Basic Information - **Project Name**: system_setting - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-16 - **Last Updated**: 2021-08-29 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # system_setting [![pub package](version_image.svg)](https://pub.dartlang.org/packages/system_setting) A Flutter plugin for jumping to system settings. For Android, this plugin currently support jumping to WiFi, Bluetooth and App Notification setting. Other setting path will be added soon. For iOS, this plugin only opens the app setting screen `Settings` application, as using url schemes to open inner setting path is a violation of Apple's regulations. Using url scheme to open settings can also leads to possible App Store rejection. If you can find any workaround or enhancement, pull requests are always welcome. ## Usage To use this plugin, add `system_setting` as a [dependency in your pubspec.yaml file](https://flutter.io/platform-plugins/). For iOS, `SettingTarget` will not have any effect. It will always go to app setting. ### Example ```dart import 'package:flutter/material.dart'; import 'packages:system_setting/system_setting.dart'; void main() => runApp(MaterialApp( home: Scaffold( body: Center( child: RaisedButton( onPressed: _jumpToSetting, child: Text('Goto setting'), ), ), ), )); _jumpToSetting() { SystemSetting.goto(SettingTarget.WIFI); } ```