mirror of
https://github.com/GitJournal/GitJournal.git
synced 2025-07-01 12:23:44 +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");
|
var note = Note(null, "fileName.md");
|
||||||
note.title = "Pigeons";
|
note.title = "Pigeons";
|
||||||
note.body = _buildBody();
|
note.body = _buildBody();
|
||||||
note.created = DateTime.now();
|
note.created = DateTime.now().add(const Duration(days: -1));
|
||||||
|
note.modified = DateTime.now();
|
||||||
|
|
||||||
var body = Column(
|
var body = Column(
|
||||||
children: <Widget>[
|
children: <Widget>[
|
||||||
|
Reference in New Issue
Block a user