From 199e298903e2881d2b9d919f1e2a859e7052dffd Mon Sep 17 00:00:00 2001 From: Vishesh Handa Date: Thu, 5 Dec 2019 17:40:08 +0100 Subject: [PATCH] JournalEditor: Show "note" instead of "Journal" It seems we are moving towards a more generalized Note taking application. I'd still like to use it for both Note taking and Journaling. I'm not sure how to clearly show it is meant for both. --- lib/screens/journal_editor.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/screens/journal_editor.dart b/lib/screens/journal_editor.dart index 12773184..e090bec5 100644 --- a/lib/screens/journal_editor.dart +++ b/lib/screens/journal_editor.dart @@ -58,7 +58,7 @@ class JournalEditorState extends State { editor = NoteMarkdownEditor(_textController, true); } - var title = newNote ? "Journal Entry" : "Edit Journal Entry"; + var title = newNote ? "New Note" : "Edit Note"; var newJournalScreen = Scaffold( appBar: AppBar( title: Text(title),