android studio 3
return new Container(
height: 64.0,
child: new Row(children: [
new Expanded(child: new Container(color: Colors.cyanAccent,
child: new Column(children: [
new Text("Today",
style: new TextStyle(
fontSize: 19.0,
color: Colors.black),
textAlign: TextAlign.left),
new Text("Thuersday, 26 March")
]))),
new Align(alignment: Alignment.centerRight, child: new Image(image: AssetImage('assets/images/ic_profile.png')))
]));
as you can see to align text Today I use textAlign: TextAlign.left
. But it not work.
Here result: