From 5109802dfb14f9ac80b4c8cad2c7fac2a2d8d813 Mon Sep 17 00:00:00 2001 From: Sahil Yeole Date: Mon, 23 Oct 2023 04:17:28 +0530 Subject: [PATCH] update id on onchaged Signed-off-by: Sahil Yeole --- flutter/lib/mobile/pages/connection_page.dart | 3 +++ 1 file changed, 3 insertions(+) diff --git a/flutter/lib/mobile/pages/connection_page.dart b/flutter/lib/mobile/pages/connection_page.dart index 83ca6efd2..09532f724 100644 --- a/flutter/lib/mobile/pages/connection_page.dart +++ b/flutter/lib/mobile/pages/connection_page.dart @@ -265,6 +265,9 @@ class _ConnectionPageState extends State { enableSuggestions: false, keyboardType: TextInputType.visiblePassword, // keyboardType: TextInputType.number, + onChanged: (String text) { + _idController.id = text; + }, style: const TextStyle( fontFamily: 'WorkSans', fontWeight: FontWeight.bold,