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.
This commit is contained in:
Vishesh Handa
2019-12-05 17:40:08 +01:00
parent 7d223509c8
commit 199e298903

View File

@ -58,7 +58,7 @@ class JournalEditorState extends State<JournalEditor> {
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),