mirror of
https://github.com/GitJournal/GitJournal.git
synced 2025-06-29 10:17:16 +08:00
Metadata Settings: Show modified as well
This commit is contained in:
@ -28,7 +28,8 @@ class _NoteMetadataSettingsScreenState
|
||||
var note = Note(null, "fileName.md");
|
||||
note.title = "Pigeons";
|
||||
note.body = _buildBody();
|
||||
note.created = DateTime.now();
|
||||
note.created = DateTime.now().add(const Duration(days: -1));
|
||||
note.modified = DateTime.now();
|
||||
|
||||
var body = Column(
|
||||
children: <Widget>[
|
||||
|
Reference in New Issue
Block a user