We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4eedac commit b671ab9Copy full SHA for b671ab9
lib/app/modules/common/splash_page.dart
@@ -10,6 +10,12 @@ class _SplashPageState extends State<SplashPage> {
10
@override
11
void initState() {
12
super.initState();
13
+ Future.delayed(
14
+ Duration(seconds: 1),
15
+ () {
16
+ Get.changeTheme(WaveTheme());
17
+ },
18
+ );
19
Future.delayed(
20
Duration(seconds: 2),
21
() async {
lib/main.dart
@@ -15,7 +15,6 @@ class MyApp extends StatelessWidget {
return GetMaterialApp(
title: 'Flutter Demo',
debugShowCheckedModeBanner: false,
- theme: WaveTheme(),
home: SplashPage(),
);
}
0 commit comments