diff --git a/lib/main.dart b/lib/main.dart index 1508fc1..6348e53 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -20,7 +20,7 @@ class MyApp extends StatelessWidget { color: Colors.black, ), bodyText2: TextStyle( - color: Colors.black, + color: Colors.brown, ), headline1: TextStyle( fontSize: 20, diff --git a/lib/screen/splashScreen.dart b/lib/screen/splashScreen.dart index 1837cdb..e3e4c8f 100644 --- a/lib/screen/splashScreen.dart +++ b/lib/screen/splashScreen.dart @@ -7,11 +7,12 @@ class SplashScreen extends StatelessWidget { @override Widget build(BuildContext context) { return AnimatedSplashScreen( - duration: 800, - splash: Icons.broken_image_rounded, - nextScreen: LoginScreen(), - splashTransition: SplashTransition.fadeTransition, - pageTransitionType: PageTransitionType.topToBottom, - backgroundColor: Theme.of(context).primaryColor); + duration: 800, + splash: Icons.broken_image_rounded, + nextScreen: LoginScreen(), + splashTransition: SplashTransition.fadeTransition, + pageTransitionType: PageTransitionType.topToBottom, + backgroundColor: Theme.of(context).primaryColor, + ); } }