fix(ui): Remove print

This commit is contained in:
PapaTutuWawa 2023-04-12 16:11:34 +02:00
parent d38ee1692b
commit 67c1903bd1

View File

@ -68,7 +68,6 @@ class IntegerInputState extends State<IntegerInput> {
child: Focus( child: Focus(
onFocusChange: (hasFocus) { onFocusChange: (hasFocus) {
if (!hasFocus) { if (!hasFocus) {
print('Handle focus loss');
_handleSubmit(_controller.text); _handleSubmit(_controller.text);
} }
}, },