mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-11-20 02:59:26 +01:00
Merge branch 'no-auto-correct-homeserver-in-search' into 'main'
fix: Disable autocorrect in discover homeserver adaptive dialog popup Closes #515 See merge request famedly/fluffychat!846
This commit is contained in:
commit
27275c5017
@ -63,11 +63,11 @@ class SearchController extends State<Search> {
|
|||||||
cancelLabel: L10n.of(context)!.cancel,
|
cancelLabel: L10n.of(context)!.cancel,
|
||||||
textFields: [
|
textFields: [
|
||||||
DialogTextField(
|
DialogTextField(
|
||||||
prefixText: 'https://',
|
prefixText: 'https://',
|
||||||
hintText: Matrix.of(context).client.homeserver?.host,
|
hintText: Matrix.of(context).client.homeserver?.host,
|
||||||
initialText: server,
|
initialText: server,
|
||||||
keyboardType: TextInputType.url,
|
keyboardType: TextInputType.url,
|
||||||
)
|
autocorrect: false)
|
||||||
]);
|
]);
|
||||||
if (newServer == null) return;
|
if (newServer == null) return;
|
||||||
Store().setItem(_serverStoreNamespace, newServer.single);
|
Store().setItem(_serverStoreNamespace, newServer.single);
|
||||||
|
@ -7,7 +7,7 @@ environment:
|
|||||||
sdk: '>=2.12.0 <3.0.0'
|
sdk: '>=2.12.0 <3.0.0'
|
||||||
|
|
||||||
dependencies:
|
dependencies:
|
||||||
adaptive_dialog: ^1.3.0
|
adaptive_dialog: ^1.5.1
|
||||||
adaptive_theme: ^2.3.1
|
adaptive_theme: ^2.3.1
|
||||||
animations: ^2.0.2
|
animations: ^2.0.2
|
||||||
blurhash_dart: ^1.1.0
|
blurhash_dart: ^1.1.0
|
||||||
|
Loading…
Reference in New Issue
Block a user