mirror of
https://github.com/GitJournal/GitJournal.git
synced 2025-06-27 09:06:43 +08:00
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:
@ -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),
|
||||
|
Reference in New Issue
Block a user