Skip to content

Instantly share code, notes, and snippets.

@PeterHdd
Created May 26, 2021 19:32
Show Gist options
  • Save PeterHdd/66ba96163860e1b72016a0410f53018f to your computer and use it in GitHub Desktop.
Save PeterHdd/66ba96163860e1b72016a0410f53018f to your computer and use it in GitHub Desktop.
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