From 32326beb8d39d4713c9f65d01dfb243c44a5dbda Mon Sep 17 00:00:00 2001 From: Chen Asraf Date: Sun, 12 Apr 2026 17:58:35 +0300 Subject: [PATCH] fix: allow arbitrary text in quantity --- lib/views/checklists/item_form_view.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/views/checklists/item_form_view.dart b/lib/views/checklists/item_form_view.dart index 40d5c96..9274935 100644 --- a/lib/views/checklists/item_form_view.dart +++ b/lib/views/checklists/item_form_view.dart @@ -158,7 +158,7 @@ class _ItemFormViewState extends State { labelText: f.quantity, border: const OutlineInputBorder(), ), - keyboardType: TextInputType.number, + keyboardType: TextInputType.text, ), const SizedBox(height: 16), Text(f.category, style: theme.textTheme.bodyMedium),