feat: trim user input
This commit is contained in:
parent
821232addc
commit
fa7182d75e
4 changed files with 7 additions and 7 deletions
|
|
@ -61,7 +61,7 @@ class _CreateConfirmationPopupState extends State<CreateConfirmationPopup> {
|
|||
return null;
|
||||
},
|
||||
onSaved: (newValue) {
|
||||
name = newValue;
|
||||
name = newValue?.trim();
|
||||
},
|
||||
),
|
||||
Row(
|
||||
|
|
|
|||
Reference in a new issue