restart_app 1.3.2 restart_app: ^1.3.2 copied to clipboard
A Flutter plugin that helps you to restart the whole Flutter app with a single function call by using native APIs.
// ignore_for_file: use_build_context_synchronously
import 'package:flutter/material.dart';
import 'package:restart_app/restart_app.dart';
import 'package:url_strategy/url_strategy.dart';
void main() {
setPathUrlStrategy();
runApp(const MaterialApp(home: SplashPage()));
}
class SplashPage extends StatefulWidget {
const SplashPage({super.key});
@override
State<SplashPage> createState() => _SplashPageState();
}
class _SplashPageState extends State<SplashPage> {
@override
void initState() {
Future.delayed(
const Duration(milliseconds: 600),
() {
Navigator.pushAndRemoveUntil(
context,
MaterialPageRoute(builder: (_) => const HomePage()),
(route) => false,
);
},
);
super.initState();
}
@override
Widget build(BuildContext context) {
return const Scaffold(
body: Center(child: FlutterLogo(size: 64)),
);
}
}
class HomePage extends StatelessWidget {
const HomePage({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(title: const Text('Restart App Example')),
body: Center(
child: FilledButton(
child: const Text('Restart!'),
onPressed: () {
Restart.restartApp(
/// In Web Platform, Fill webOrigin only when your new origin is different than the app's origin
// webOrigin: 'http://example.com',
// Customizing the notification message only on iOS
notificationTitle: 'Restarting App',
notificationBody: 'Please tap here to open the app again.',
);
},
),
),
),
);
}
}