new Row(
children: <Widget>[
Expanded(child: Container(
alignment: Alignment.centerLeft,
width: double.infinity,
margin: EdgeInsets.only(left: 5),
child: Text(list[index].MSG_MX,
style: TextStyle(
fontSize: 14,
color: Colors.black45,
fontWeight: FontWeight.normal),
maxLines: 3,
overflow: TextOverflow.ellipsis,
)),)
]),