system_setting 0.0.1 copy "system_setting: ^0.0.1" to clipboard
system_setting: ^0.0.1 copied to clipboard

outdated

Flutter plugin for jumping to system settings.

system_setting #

pub package

A Flutter plugin for jumping to system settings. Currently support Android only. iOS support is coming soon.

Usage #

To use this plugin, add system_setting as a dependency in your pubspec.yaml file.

Example #

import 'package:flutter/material.dart';
import 'packages:system_setting/system_setting.dart';

void main() => runApp(Scaffold(
      body: Center(
        child: RaisedButton(
          onPressed: _jumpToSetting,
          child: Text('Show Flutter homepage'),
        ),
      ),
    ));

_jumpToSetting() {
  SystemSetting.goto(SettingTarget.WIFI);
}
5
likes
0
pub points
71%
popularity

Publisher

unverified uploader

Flutter plugin for jumping to system settings.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on system_setting