INNER CODE UNIT · Dart
MyApp
kaina404/FlutterDouBan · lib/main.dart:17
class MyApp extends StatelessWidget {
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return RestartWidget(
child: MaterialApp(
theme: ThemeData(backgroundColor: Colors.white),
home: Scaffold(
body: SplashWidget(),
),
),
);
}
}
///这个组件用来重新加载整个child Widget的。当我们需要重启APP的时候,可以使用这个方案
///https://stackoverflow.com/questions/50115311/flutter-how-to-force-an-application-restart-in-production-mode