Skip to content

Instantly share code, notes, and snippets.

@BKinya
Created September 10, 2020 21:03
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/a935a1f242cb4146b28f0f1ea3a0280b to your computer and use it in GitHub Desktop.
Save BKinya/a935a1f242cb4146b28f0f1ea3a0280b to your computer and use it in GitHub Desktop.
Widget buildCard(String message) {
return Card(
color: Colors.white70,
child: Container(
padding: EdgeInsets.all(10.0),
child: Column(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
crossAxisAlignment: CrossAxisAlignment.center,
children: <Widget>[
Text(message,
style: new 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