Slide 97
Slide 97 text
new Container(
child: new Column(
...
children: [
new Row(
children: [
new Expanded(
child: new Text(email.sender,
style: new TextStyle(
color: Colors.black,
fontWeight: FontWeight.bold,
fontSize: 16.0))
),
new Text(email.timeStamp,
style: new TextStyle(
color: Colors.blue,
fontWeight: FontWeight.bold,
fontSize: 12.0))
]
),
new Text(...),
new Text(...)
],
),
)
new Container(
child: new Column(
...
children: [
new Row(
children: [
new Expanded(
child: new Text(email.sender,
style: new TextStyle(
color: Colors.black,
fontWeight: FontWeight.bold,
fontSize: 16.0))
),
new Text(email.timeStamp,
style: new TextStyle(
color: Colors.blue,
fontWeight: FontWeight.bold,
fontSize: 12.0))
]
),
new Text(...),
new Text(...)
],
),
)