From 939084825762a64c40aed5b3c3d901367c90c2de Mon Sep 17 00:00:00 2001 From: Vishesh Handa Date: Fri, 15 Feb 2019 12:07:58 +0100 Subject: [PATCH] NoteViewer: Put empty space at the end This way the Floating Action Button is not covering up the text. --- lib/note_viewer.dart | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/note_viewer.dart b/lib/note_viewer.dart index 119d0589..f25c5fe3 100644 --- a/lib/note_viewer.dart +++ b/lib/note_viewer.dart @@ -73,6 +73,7 @@ class NoteViewer extends StatelessWidget { children: [ NoteHeader(note), Text(note.body, style: _biggerFont), + SizedBox(height: 64.0), // _buildFooter(context), ], crossAxisAlignment: CrossAxisAlignment.start,