Title Editor: Allow the title to expand

Don't just confine it to a single line.
This commit is contained in:
Vishesh Handa
2020-03-30 12:04:33 +02:00
parent e98b3c3e41
commit cea0adb7f9

View File

@ -11,7 +11,6 @@ class NoteTitleEditor extends StatelessWidget {
return TextField(
keyboardType: TextInputType.text,
maxLines: 1,
style: style,
decoration: const InputDecoration(
hintText: 'Title',
@ -20,6 +19,7 @@ class NoteTitleEditor extends StatelessWidget {
),
controller: textController,
textCapitalization: TextCapitalization.sentences,
maxLines: null,
);
}
}