0 purchases
autostart
autostart #
Wrap native library to implement flutter jump from startup page
Getting Started #
step 1
dependencies:
yin_auto_start: ^0.0.1
copied to clipboard
step 2
import 'package:autostart/autostart.dart';
copied to clipboard
step 3
class MyApp extends StatefulWidget {
@override
_MyAppState createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: const Text('auto start manage test'),
),
body: Center(
child: GestureDetector(
onTap: () => checkAutoStartManager(context),
child: Text('to auto start manager'),
),
),
),
);
}
void checkAutoStartManager(BuildContext context) async {
bool isAutoStartPermissionAvailable = await Autostart.isAutoStartPermissionAvailable;
if (isAutoStartPermissionAvailable) {
print('test available ok');
Autostart.getAutoStartPermission();
} else {
print('test available fail');
}
}
}
copied to clipboard
improt native project and thanks :
https://github.com/judemanutd/AutoStarter
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.