From 9f29370d7e46127a4a8781144be8070cc4b68d29 Mon Sep 17 00:00:00 2001 From: Ilya Zverev Date: Sun, 25 Jan 2026 17:47:57 +0200 Subject: [PATCH] Fix setProperty() in TextEditingValue --- lib/src/widgets/editable_text.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/src/widgets/editable_text.dart b/lib/src/widgets/editable_text.dart index 1e0ccbc..eaf1e57 100644 --- a/lib/src/widgets/editable_text.dart +++ b/lib/src/widgets/editable_text.dart @@ -69,8 +69,8 @@ class $TextEditingController implements $Instance { switch (identifier) { case 'text': $value.text = value.$value; - break; + default: + _superclass.$setProperty(runtime, identifier, value); } - return _superclass.$setProperty(runtime, identifier, value); } }