system_settings
iOS 및 Android에서 시스템 및 앱 설정을 열기 위한 Flutter 플러그인입니다.
iOS 및 Android에서 시스템 설정을 여는 Flutter 플러그인
{"sdk":"flutter"}아래는 영문 원문 스냅샷입니다. 최신 내용은 GitHub에서 확인하세요.
Build pub package 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.
Add this to your package's pubspec.yaml file:
dependencies:
system_settings: 2.1.0
Next, import the package into your dart code:
import 'package:system_settings/system_settings.dart';
Example which opens the app settings:
Widget build(BuildContext context) {
return RaisedButton(
onPressed: SystemSettings.app,
child: Text('Open app settings'),
);
}
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.
Code copyright 2020–2022 Florian Weinaug. Code released under the MIT license.