Skip to content

Instantly share code, notes, and snippets.

@fatihhcan
Created June 9, 2020 18:12
Show Gist options
  • Save fatihhcan/63c00111c9f43eba8a8673e582e25d79 to your computer and use it in GitHub Desktop.
Save fatihhcan/63c00111c9f43eba8a8673e582e25d79 to your computer and use it in GitHub Desktop.
return Column(
children: <Widget>[
Padding(
padding: const EdgeInsets.only(
top: 40, bottom: 50, left: 20, right: 20),
child: Row(
children: <Widget>[
Column(
children: <Widget>[
Icon(
Icons.menu,
size: 70,
color: Color(0xff373874),
),
Text(
"Menu",
style: TextStyle(
color: Color(0xffec5446),
fontWeight: FontWeight.bold),
),
],
),
SizedBox(
width: 210,
),
Container(
width: 80,
height: 80,
child: FloatingActionButton(
onPressed: () {},
child: Icon(Icons.add, size: 80),
backgroundColor: Color(0xffe72817),
elevation: 0,
),
),
],
),
),
],
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment