fix(auth): disable autocorrect and it's suggestions

This commit is contained in:
Prateek Sunal
2024-06-12 16:45:20 +05:30
parent 3d46b015e1
commit b273ac3cf0

View File

@@ -238,6 +238,8 @@ class _HomePageState extends State<HomePage> {
title: !_showSearchBox
? const Text('Ente Auth')
: TextField(
autocorrect: false,
enableSuggestions: false,
focusNode: searchInputFocusNode,
autofocus: _searchText.isEmpty,
controller: _textController,