restart_app 1.2.0
restart_app: ^1.2.0 copied to clipboard
A simple package that helps you to restart the whole Flutter app with a single function call.
example/lib/main.dart
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: TextButton(
child: const Text('Restart!'),
onPressed: () {
/// Fill webOrigin only when your new origin is different than the app's origin
Restart.restartApp();
},
),
),
),
);
}
}