From 67c1903bd1d711e0b17f6590355c822b3ce379d6 Mon Sep 17 00:00:00 2001 From: "Alexander \"PapaTutuWawa" Date: Wed, 12 Apr 2023 16:11:34 +0200 Subject: [PATCH] fix(ui): Remove print --- lib/src/ui/widgets/integer_input.dart | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/src/ui/widgets/integer_input.dart b/lib/src/ui/widgets/integer_input.dart index 8edab39..645e8bf 100644 --- a/lib/src/ui/widgets/integer_input.dart +++ b/lib/src/ui/widgets/integer_input.dart @@ -68,7 +68,6 @@ class IntegerInputState extends State { child: Focus( onFocusChange: (hasFocus) { if (!hasFocus) { - print('Handle focus loss'); _handleSubmit(_controller.text); } },