Skip to content

Instantly share code, notes, and snippets.

@BKinya
Last active September 10, 2020 20:58
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 BKinya/07e7a136a91991ff67a251873e0b67f8 to your computer and use it in GitHub Desktop.
Save BKinya/07e7a136a91991ff67a251873e0b67f8 to your computer and use it in GitHub Desktop.
body: Container(
padding: EdgeInsets.all(10.0),
child: Column(
crossAxisAlignment: CrossAxisAlignment.stretch,
children: <Widget> [
Card(
color: Colors.white70,
child: Container(
padding: EdgeInsets.all(10.0),
child: Column(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
crossAxisAlignment: CrossAxisAlignment.center,
children: <Widget> [
Text("I love Flutter", style: TextStyle(fontSize: 20.0, fontWeight: FontWeight.bold)),
Icon(Icons.favorite, color: Colors.redAccent, size: 50.0)
]
)
)
)
]
)
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment