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

outdated

A new flutter plugin project.

fl_sys_shortcut #

A flutter plugin to use system shortcuts.

Getting Started #

<uses-permission android:name="android.permission.ACCESS_WIFI_STATE"></uses-permission>
<uses-permission android:name="android.permission.CHANGE_WIFI_STATE"></uses-permission>
<uses-permission android:name="android.permission.BLUETOOTH"/>
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN"/>

to acquire notification policy permission you need to add these two permissions in your AndroidManifext.xml file #

<uses-permission android:name="android.permission.ACCESS_NOTIFICATION_POLICY"/>

Make this import #

import 'package:fl_sys_shortcut/fl_sys_shortcut.dart';

Functions #

Toggle WIFI using this function #

await FlSysShortcut.wifi();// toggle wifi in android

Toggle BLUETOOTH using this function #

await FlSysShortcut.bluetooth();// toggle bluetooth in android

turn on Silent Mode using this function #

await FlSysShortcut.silentMode();// toggle silent mode in android

Getters #

Get current WIFI state #

await FlSysShortcut.checkWifi;// return true/false

Get current silent mode state #

await FlSysShortcut.checkWifi;// return true/false

Get current BLUETOOTH state #

await FlSysShortcut.checkBluetooth;// return true/false

Usage #

FlatButton( child: Text("Check Wifi"), onPressed: () async { bool wifi = await FlSysShortcut.checkWifi; }, ),

0
likes
0
pub points
0%
popularity

Publisher

unverified uploader

A new flutter plugin project.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on fl_sys_shortcut