Created
May 26, 2021 19:32
-
-
Save PeterHdd/66ba96163860e1b72016a0410f53018f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class WelcomePage extends StatelessWidget { | |
@override | |
Widget build(BuildContext context) { | |
Size size = MediaQuery.of(context).size; | |
User? result = FirebaseAuth.instance.currentUser; | |
return Scaffold( | |
backgroundColor: Constants.kPrimaryColor, | |
body: AnnotatedRegion<SystemUiOverlayStyle>( | |
value: Constants.statusBarColor, | |
child: Center( | |
child: Column( | |
mainAxisAlignment: MainAxisAlignment.center, | |
children: [ | |
Image.asset("assets/images/main-img.png"), |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment