Browse Source

PhotoView:Limit maxlines for photo description

Neeraj Gupta 2 years ago
parent
commit
eed7fa9349
1 changed files with 2 additions and 0 deletions
  1. 2 0
      lib/ui/viewer/file/fading_bottom_bar.dart

+ 2 - 0
lib/ui/viewer/file/fading_bottom_bar.dart

@@ -204,6 +204,8 @@ class FadingBottomBarState extends State<FadingBottomBar> {
                           ),
                           child: Text(
                             widget.file.caption,
+                            overflow: TextOverflow.ellipsis,
+                            maxLines: 4,
                             style: getEnteTextTheme(context)
                                 .small
                                 .copyWith(color: textBaseDark),