From 9912f598df83d600eeb23afcf85ae29a847caf26 Mon Sep 17 00:00:00 2001 From: Vishesh Handa Date: Tue, 28 Jan 2020 15:57:40 +0100 Subject: [PATCH] Using the same font when editing and viewing the note Otherwise the transition seems a bit off. Also, we will soon be combining both the editor and viewer, so it makes sense for them to look identical. --- lib/screens/journal_browsing.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/screens/journal_browsing.dart b/lib/screens/journal_browsing.dart index 84dcf661..f1d22182 100644 --- a/lib/screens/journal_browsing.dart +++ b/lib/screens/journal_browsing.dart @@ -175,7 +175,7 @@ class NoteViewer extends StatelessWidget { ThemeData theme = Theme.of(context); theme = theme.copyWith( textTheme: theme.textTheme.copyWith( - body1: theme.textTheme.body1, + body1: theme.textTheme.subhead, ), );