NoteViewer: Put empty space at the end

This way the Floating Action Button is not covering up the text.
This commit is contained in:
Vishesh Handa
2019-02-15 12:07:58 +01:00
parent 72b30688b4
commit 9390848257

View File

@ -73,6 +73,7 @@ class NoteViewer extends StatelessWidget {
children: <Widget>[
NoteHeader(note),
Text(note.body, style: _biggerFont),
SizedBox(height: 64.0),
// _buildFooter(context),
],
crossAxisAlignment: CrossAxisAlignment.start,