diff --git a/lib/folder_views/journal_view.dart b/lib/folder_views/journal_view.dart index f3f9f6df..cda7e702 100644 --- a/lib/folder_views/journal_view.dart +++ b/lib/folder_views/journal_view.dart @@ -62,7 +62,7 @@ class JournalView extends StatelessWidget { var children = [ const SizedBox(height: 8.0), Text( - note.summary, + note.summary + '\n', // no minLines option maxLines: 3, overflow: TextOverflow.ellipsis, style: textTheme.body1, diff --git a/lib/folder_views/standard_view.dart b/lib/folder_views/standard_view.dart index 3091daf7..c9ae0449 100644 --- a/lib/folder_views/standard_view.dart +++ b/lib/folder_views/standard_view.dart @@ -97,7 +97,7 @@ class StandardView extends StatelessWidget { var summary = [ const SizedBox(height: 8.0), Text( - note.summary, + note.summary + '\n', // no minLines option maxLines: 3, overflow: TextOverflow.ellipsis, style: textTheme.body1,