Full width expense editor

This commit is contained in:
Hillel Coren 2021-08-03 22:22:52 +03:00
parent 2e808d7103
commit 5dd7a65f5a
1 changed files with 2 additions and 2 deletions

View File

@ -88,13 +88,13 @@ class ExpenseEditNotesState extends State<ExpenseEditNotes> {
: null, : null,
children: <Widget>[ children: <Widget>[
DecoratedFormField( DecoratedFormField(
maxLines: 8, maxLines: 10,
controller: _publicNotesController, controller: _publicNotesController,
keyboardType: TextInputType.multiline, keyboardType: TextInputType.multiline,
label: localization.publicNotes, label: localization.publicNotes,
), ),
DecoratedFormField( DecoratedFormField(
maxLines: 8, maxLines: 10,
controller: _privateNotesController, controller: _privateNotesController,
keyboardType: TextInputType.multiline, keyboardType: TextInputType.multiline,
label: localization.privateNotes, label: localization.privateNotes,