NoteEditor: Increase padding

It feels much better typing when there is more free space, but this
might just be only on my mobile which is kinda big. How do I choose this
value in a screen independent manner?
This commit is contained in:
Vishesh Handa
2019-01-17 14:14:00 +01:00
parent 334dd4b683
commit fa5db149c8

View File

@ -70,7 +70,7 @@ class NoteEditorState extends State<NoteEditor> {
title: new Text(title),
),
body: Padding(
padding: const EdgeInsets.all(8.0),
padding: const EdgeInsets.all(16.0),
child: SingleChildScrollView(
child: Column(
children: <Widget>[