JournalView: Do not mention the day twice in the header

This commit is contained in:
Vishesh Handa
2019-01-11 19:29:39 +01:00
parent 89c878f1cd
commit 8a35470ad1

View File

@ -85,7 +85,7 @@ class NoteViewer extends StatelessWidget {
} }
Widget _buildHeader(BuildContext context) { Widget _buildHeader(BuildContext context) {
var dateStr = DateFormat('MMM dd, yyyy').format(note.created); var dateStr = DateFormat('MMM, yyyy').format(note.created);
var timeStr = DateFormat('EEEE H:m').format(note.created); var timeStr = DateFormat('EEEE H:m').format(note.created);
var bigNum = new Text( var bigNum = new Text(