diff --git a/lib/core/note.dart b/lib/core/note.dart index c0dea91a..44747501 100644 --- a/lib/core/note.dart +++ b/lib/core/note.dart @@ -35,6 +35,7 @@ class Note with ChangeNotifier implements Comparable { Note.newNote(this.parent) { _created = DateTime.now(); + _data.props['created'] = toIso8601WithTimezone(created); _filePath = p.join(parent.folderPath, getFileName(this)); }