Skip to content

Instantly share code, notes, and snippets.

@BKinya
Last active September 5, 2020 13:24
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/5d0dba1720364d2d0510558ec2e4b70f to your computer and use it in GitHub Desktop.
Save BKinya/5d0dba1720364d2d0510558ec2e4b70f to your computer and use it in GitHub Desktop.
class BusinessCardWidget extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
body: Column(
children: [
CircleAvatar(
backgroundImage: AssetImage(''),
),
Row(
children: [
Text('Name'),
Text('John Doe'),
],
),
Row(
children: [
Text('Email'),
Text('John@example.com'),
],
)
],
),
),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment