From 9575601afb92cabf6c57a905f48fc3046a234cb3 Mon Sep 17 00:00:00 2001 From: Pierre-Louis Date: Fri, 24 Jan 2020 19:01:12 +0100 Subject: [PATCH] Don't overflow cards text (#261) --- gallery/gallery/lib/pages/home.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gallery/gallery/lib/pages/home.dart b/gallery/gallery/lib/pages/home.dart index 312a122c6..7b65f8838 100644 --- a/gallery/gallery/lib/pages/home.dart +++ b/gallery/gallery/lib/pages/home.dart @@ -771,13 +771,13 @@ class _CarouselCard extends StatelessWidget { title, style: textTheme.caption.apply(color: textColor), maxLines: 3, - overflow: TextOverflow.ellipsis, + overflow: TextOverflow.visible, ), Text( subtitle, style: textTheme.overline.apply(color: textColor), maxLines: 5, - overflow: TextOverflow.ellipsis, + overflow: TextOverflow.visible, ), ], ),