Skip to content

Instantly share code, notes, and snippets.

@fatihhcan
Created June 9, 2020 18:00
Show Gist options
  • Save fatihhcan/f284348ff6f58dad5ceb11e2fe916643 to your computer and use it in GitHub Desktop.
Save fatihhcan/f284348ff6f58dad5ceb11e2fe916643 to your computer and use it in GitHub Desktop.
return Padding(
padding: const EdgeInsets.only(
top: 10, bottom: 10, left: 15, right: 15),
child: Column(
children: <Widget>[
ListTile(
title: Text(
"Personal",
style: TextStyle(
color: Color(0xff343572),
fontFamily: "Ramabhadra",
fontWeight: FontWeight.w600,
fontSize: 35,
),
),
trailing: Text(
"4",
style: TextStyle(
color: Color(0xff343572),
fontFamily: "Ramabhadra",
fontWeight: FontWeight.w600,
fontSize: 35,
),
),
),
SizedBox(
height: 10,
),
ListTile(
title: Text(
"Work",
style: TextStyle(
color: Color(0xffe82a18),
fontFamily: "Ramabhadra",
fontWeight: FontWeight.w600,
fontSize: 35,
),
),
trailing: FloatingActionButton(
onPressed: () {},
child: Text(
"6",
style: TextStyle(
color: Color(0xffe82a18),
fontFamily: "Ramabhadra",
fontWeight: FontWeight.w600,
fontSize: 32,
),
),
elevation: 0,
backgroundColor: Color(0xfffad7d4),
)),
SizedBox(
height: 10,
),
ListTile(
title: Text(
"Ideas",
style: TextStyle(
color: Color(0xff343572),
fontFamily: "Ramabhadra",
fontWeight: FontWeight.w600,
fontSize: 35,
),
),
trailing: Text(
"2",
style: TextStyle(
color: Color(0xff343572),
fontFamily: "Ramabhadra",
fontWeight: FontWeight.w600,
fontSize: 35,
),
),
),
SizedBox(
height: 10,
),
ListTile(
title: Text(
"Lists",
style: TextStyle(
color: Color(0xff343572),
fontFamily: "Ramabhadra",
fontWeight: FontWeight.w600,
fontSize: 35,
),
),
trailing: Text(
"7",
style: TextStyle(
color: Color(0xff343572),
fontFamily: "Ramabhadra",
fontWeight: FontWeight.w600,
fontSize: 35,
),
),
),
],
),
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment