Created
December 12, 2019 16:05
-
-
Save shubie/3d83de270d33a03b33bda1464ee8b7f7 to your computer and use it in GitHub Desktop.
This file contains 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
SizedBox(height: 70), | |
Center( | |
child: Image.asset( | |
'assets/images/success-bulb/success-bulb.png', | |
width: size.width * .30, | |
fit: BoxFit.fill, | |
), | |
), | |
Center( | |
child: Padding( | |
padding: const EdgeInsets.all(25.0), | |
child: Text("Success!", | |
style: TextStyle( | |
color: Colors.black, | |
fontSize: 24, | |
fontWeight: FontWeight.w800)), | |
), | |
), |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment