Skip to content

Instantly share code, notes, and snippets.

@shubie
Created December 12, 2019 16:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shubie/3d83de270d33a03b33bda1464ee8b7f7 to your computer and use it in GitHub Desktop.
Save shubie/3d83de270d33a03b33bda1464ee8b7f7 to your computer and use it in GitHub Desktop.
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