Add missing const
This commit is contained in:
parent
b57a81de97
commit
5974803298
1 changed files with 2 additions and 2 deletions
|
@ -22,9 +22,9 @@ class MyApp extends StatelessWidget {
|
|||
home: AnimatedSplashScreen(
|
||||
splash: 'assets/logo_transparent.webp',
|
||||
pageTransitionType: PageTransitionType.fade,
|
||||
backgroundColor: Color(0xff1b1c1e),
|
||||
backgroundColor: const Color(0xff1b1c1e),
|
||||
splashIconSize: 150,
|
||||
nextScreen: Products(),
|
||||
nextScreen: const Products(),
|
||||
),
|
||||
debugShowCheckedModeBanner: false,
|
||||
);
|
||||
|
|
Loading…
Reference in a new issue