Commit cf83a813 authored by Hans Muller's avatar Hans Muller

Correct layout (#4115)

parent 66fee3a6
......@@ -47,9 +47,11 @@ class _ContactItem extends StatelessWidget {
columnChildren.add(new Text(lines.last, style: Theme.of(context).textTheme.caption));
List<Widget> rowChildren = <Widget>[
new Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: columnChildren
new Flexible(
child: new Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: columnChildren
)
)
];
if (icon != null) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment