Add missing const

This commit is contained in:
Moe Poi ~ 2022-04-23 23:47:40 +07:00
parent b57a81de97
commit 5974803298

View file

@ -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,
);