Skip to content

Instantly share code, notes, and snippets.

@fatihhcan
Created June 10, 2020 11:37
Show Gist options
  • Save fatihhcan/2553f5d8f65e9c4cd030cc786f1c6ebe to your computer and use it in GitHub Desktop.
Save fatihhcan/2553f5d8f65e9c4cd030cc786f1c6ebe to your computer and use it in GitHub Desktop.
Card(
elevation: 4,
margin: EdgeInsets.fromLTRB(10, 60, 10, 60),
//EdgeInsets.only(left: 100, right: 100, top: 60, bottom: 60),
child: Padding(
padding: const EdgeInsets.all(5.0),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: <Widget>[
Text(
"Today at 13:21",
style: TextStyle(
color: Color(0xfff1887e),
fontWeight: FontWeight.bold),
),
SizedBox(
height: 15,
),
Text(
"Remind Andy about Halifax files. Make sure they get send by tonigh...",
style: TextStyle(
color: Color(0xff7b7da2),
fontWeight: FontWeight.bold),
),
SizedBox(
height: 15,
),
Padding(
padding: const EdgeInsets.only(
left: 290, right: 0, top: 0, bottom: 0),
child: Text("View note...",
style: TextStyle(
color: Color(0xffec5345),
fontWeight: FontWeight.bold)),
)
],
),
),
),
Card(
elevation: 4,
margin: EdgeInsets.fromLTRB(10, 0, 10, 0),
//EdgeInsets.only(left: 100, right: 100, top: 60, bottom: 60),
child: Padding(
padding: const EdgeInsets.all(5.0),
child: SingleChildScrollView(
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: <Widget>[
Text(
"Today at 09:27",
style: TextStyle(
color: Color(0xfff1887e),
fontWeight: FontWeight.bold),
),
SizedBox(
height: 15,
),
Text(
"Tomorrow 10 AM Interviews with job...",
style: TextStyle(
color: Color(0xff7b7da2),
fontWeight: FontWeight.bold),
),
SizedBox(
height: 10,
),
Row(
children: <Widget>[
Image.network(
"https://randomwordgenerator.com/img/picture-generator/silviu-beniamin-tofan-QHz_SqhdbiE-unsplash.jpg",
width: 150,
height: 150,
fit: BoxFit.cover,
),
SizedBox(
width: 5,
),
Image.network(
"https://randomwordgenerator.com/img/picture-generator/53e1d047494faa0df7c5d57bc32f3e7b1d3ac3e45658714d702872d390_640.jpg",
width: 150,
height: 150,
fit: BoxFit.cover,
),
],
),
Padding(
padding: const EdgeInsets.only(
left: 290, right: 0, top: 0, bottom: 0),
child: Text("View note...",
style: TextStyle(
color: Color(0xffec5345),
fontWeight: FontWeight.bold)),
)
],
),
),
),
),
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment