Commit cf83a813 authored by Hans Muller's avatar Hans Muller

Correct layout (#4115)

parent 66fee3a6
...@@ -47,9 +47,11 @@ class _ContactItem extends StatelessWidget { ...@@ -47,9 +47,11 @@ class _ContactItem extends StatelessWidget {
columnChildren.add(new Text(lines.last, style: Theme.of(context).textTheme.caption)); columnChildren.add(new Text(lines.last, style: Theme.of(context).textTheme.caption));
List<Widget> rowChildren = <Widget>[ List<Widget> rowChildren = <Widget>[
new Column( new Flexible(
crossAxisAlignment: CrossAxisAlignment.start, child: new Column(
children: columnChildren crossAxisAlignment: CrossAxisAlignment.start,
children: columnChildren
)
) )
]; ];
if (icon != null) { 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