From b273ac3cf03c666d5191b979366bfa4b25317663 Mon Sep 17 00:00:00 2001 From: Prateek Sunal Date: Wed, 12 Jun 2024 16:45:20 +0530 Subject: [PATCH] fix(auth): disable autocorrect and it's suggestions --- auth/lib/ui/home_page.dart | 2 ++ 1 file changed, 2 insertions(+) diff --git a/auth/lib/ui/home_page.dart b/auth/lib/ui/home_page.dart index 4110a5f88e..81fd7ed586 100644 --- a/auth/lib/ui/home_page.dart +++ b/auth/lib/ui/home_page.dart @@ -238,6 +238,8 @@ class _HomePageState extends State { title: !_showSearchBox ? const Text('Ente Auth') : TextField( + autocorrect: false, + enableSuggestions: false, focusNode: searchInputFocusNode, autofocus: _searchText.isEmpty, controller: _textController,