fix:Disable autocorrect in homeserver search field

This commit is contained in:
Avion 2022-04-29 13:25:02 -07:00
commit f40ede018c
2 changed files with 6 additions and 6 deletions

View file

@ -63,11 +63,11 @@ class SearchController extends State<Search> {
cancelLabel: L10n.of(context)!.cancel,
textFields: [
DialogTextField(
prefixText: 'https://',
hintText: Matrix.of(context).client.homeserver?.host,
initialText: server,
keyboardType: TextInputType.url,
)
prefixText: 'https://',
hintText: Matrix.of(context).client.homeserver?.host,
initialText: server,
keyboardType: TextInputType.url,
autocorrect: false)
]);
if (newServer == null) return;
Store().setItem(_serverStoreNamespace, newServer.single);