Scale card demo titles if they will not fit (#6462)

This commit is contained in:
Hans Muller 2016-10-21 14:10:39 -07:00 committed by GitHub
parent aa12716d44
commit a8bf594e59

View file

@ -70,12 +70,15 @@ class TravelDestinationItem extends StatelessWidget {
new Positioned(
bottom: 16.0,
left: 16.0,
child: new Text(destination.title,
style: titleStyle,
softWrap: false,
overflow: TextOverflow.ellipsis
)
)
right: 16.0,
child: new FittedBox(
fit: ImageFit.scaleDown,
alignment: FractionalOffset.centerLeft,
child: new Text(destination.title,
style: titleStyle,
),
),
),
]
)
),