system_shortcuts 0.0.2 system_shortcuts: ^0.0.2 copied to clipboard
A flutter plugin to use system shortcuts
import 'package:flutter/material.dart';
import 'package:system_shortcuts/system_shortcuts.dart';
void main() => runApp(MyApp());
class MyApp extends StatefulWidget {
@override
_MyAppState createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
@override
void initState() {
super.initState();
}
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: const Text('Plugin example app'),
),
body: Center(
child: ListView(
children: <Widget>[
FlatButton(
child: Text("Home"),
onPressed: () async {
await SystemShortcuts.home();
},
),
FlatButton(
child: Text("Back"),
onPressed: () async {
await SystemShortcuts.back();
},
),
FlatButton(
child: Text("VolDown"),
onPressed: () async {
await SystemShortcuts.volDown();
},
),
FlatButton(
child: Text("VolUp"),
onPressed: () async {
await SystemShortcuts.volUp();
},
),
FlatButton(
child: Text("Landscape"),
onPressed: () async {
await SystemShortcuts.orientLandscape();
},
),
FlatButton(
child: Text("Portrait"),
onPressed: () async {
await SystemShortcuts.orientPortrait();
},
),
FlatButton(
child: Text("Wifi"),
onPressed: () async {
await SystemShortcuts.wifi();
},
),
FlatButton(
child: Text("Check Wifi"),
onPressed: () async {
print(await SystemShortcuts.checkWifi);
},
),
FlatButton(
child: Text("Bluetooth"),
onPressed: () async {
await SystemShortcuts.bluetooth();
},
),
FlatButton(
child: Text("Check Bluetooth"),
onPressed: () async {
print(await SystemShortcuts.checkBluetooth);
},
),
],
)),
),
);
}
}