Skip to content

Instantly share code, notes, and snippets.

@buraktabn
Last active January 29, 2020 04:03
Show Gist options
  • Save buraktabn/18b4468307f4de22ef6eec399c6f1231 to your computer and use it in GitHub Desktop.
Save buraktabn/18b4468307f4de22ef6eec399c6f1231 to your computer and use it in GitHub Desktop.
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: <Widget>[
Padding(
padding: const EdgeInsets.all(16),
child: Row(
children: <Widget>[
SizedBox(
width: 100,
height: 100,
child: CircleAvatar(
radius: 30.0,
backgroundImage:
NetworkImage('https://via.placeholder.com/250'),
backgroundColor: Colors.transparent,
),
),
Padding(
padding: const EdgeInsets.only(left: 16),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: <Widget>[
Text(
'Marry Jane',
style: TextStyle(
fontSize: 24, fontWeight: FontWeight.bold),
),
Text(
'Make-ip Artist',
style: TextStyle(fontSize: 16),
),
Card(
color: Colors.white,
elevation: 2,
child: Padding(
padding: const EdgeInsets.all(12),
child: Row(
crossAxisAlignment: CrossAxisAlignment.center,
children: <Widget>[
Text(
'420 Posts',
style: TextStyle(color: Color(0xff666666)),
),
VerticalDivider(
thickness: 2,
width: 10,
color: Colors.black,
),
Text(
'150K Followers',
style: TextStyle(color: Color(0xff666666)),
),
VerticalDivider(
width: 10,
color: Colors.black,
),
Text(
'3.5',
style: TextStyle(color: Color(0xff666666)),
),
Padding(
padding: const EdgeInsets.only(left: 4),
child: Icon(
FontAwesomeIcons.solidStar,
size: 14,
),
)
],
),
))
],
),
)
],
),
),
],
),
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment