Skip to content

Instantly share code, notes, and snippets.

@iabhishek07
Last active August 13, 2020 18:03
Show Gist options
  • Save iabhishek07/4aa1821921ca5bad9a597831d015a284 to your computer and use it in GitHub Desktop.
Save iabhishek07/4aa1821921ca5bad9a597831d015a284 to your computer and use it in GitHub Desktop.
child: Column(
children: <Widget>[
Padding(
padding:
EdgeInsets.symmetric(horizontal: 32.0, vertical: 20.0),
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: <Widget>[
Text(
'gumao.',
style: TextStyle(
fontFamily: 'Gilroy',
fontSize: 42,
fontWeight: FontWeight.w900,
color: Colors.white,
),
),
CircleAvatar(
radius: 25,
backgroundColor: Color(0xffFB7391),
child: IconButton(
icon: Icon(
Icons.search,
color: Colors.white,
size: 30,
),
onPressed: () {}),
),
],
),
),
],
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment