feat: trim user input

This commit is contained in:
Ninjdai 2025-08-14 13:32:41 +02:00
parent 821232addc
commit fa7182d75e
4 changed files with 7 additions and 7 deletions

View file

@ -243,7 +243,7 @@ class _FullyManualState extends State<_FullyManual> {
return null;
},
onSaved: (newValue) {
title = newValue;
title = newValue?.trim();
},
),
SizedBox(height: 10),
@ -259,7 +259,7 @@ class _FullyManualState extends State<_FullyManual> {
return null;
},
onSaved: (newValue) {
author = newValue;
author = newValue?.trim();
},
),
SizedBox(height: 10),