mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-11-30 16:29:30 +01:00
fix: Disable autocorrect for the homeserver url field
This commit is contained in:
parent
43d00d6208
commit
4ae099fa5d
@ -38,6 +38,7 @@ class HomeserverPickerView extends StatelessWidget {
|
|||||||
readOnly: !AppConfig.allowOtherHomeservers,
|
readOnly: !AppConfig.allowOtherHomeservers,
|
||||||
onSubmit: (_) => controller.checkHomeserverAction(),
|
onSubmit: (_) => controller.checkHomeserverAction(),
|
||||||
unfocusOnClear: false,
|
unfocusOnClear: false,
|
||||||
|
autocorrect: false,
|
||||||
),
|
),
|
||||||
elevation: 0,
|
elevation: 0,
|
||||||
),
|
),
|
||||||
|
@ -15,6 +15,7 @@ class DefaultAppBarSearchField extends StatefulWidget {
|
|||||||
final bool readOnly;
|
final bool readOnly;
|
||||||
final Widget prefixIcon;
|
final Widget prefixIcon;
|
||||||
final bool unfocusOnClear;
|
final bool unfocusOnClear;
|
||||||
|
final bool autocorrect;
|
||||||
|
|
||||||
DefaultAppBarSearchField({
|
DefaultAppBarSearchField({
|
||||||
Key key,
|
Key key,
|
||||||
@ -29,6 +30,7 @@ class DefaultAppBarSearchField extends StatefulWidget {
|
|||||||
this.readOnly = false,
|
this.readOnly = false,
|
||||||
this.prefixIcon,
|
this.prefixIcon,
|
||||||
this.unfocusOnClear = true,
|
this.unfocusOnClear = true,
|
||||||
|
this.autocorrect = true,
|
||||||
}) : super(key: key);
|
}) : super(key: key);
|
||||||
|
|
||||||
@override
|
@override
|
||||||
@ -77,7 +79,9 @@ class DefaultAppBarSearchFieldState extends State<DefaultAppBarSearchField> {
|
|||||||
padding: widget.padding ?? EdgeInsets.only(right: 12),
|
padding: widget.padding ?? EdgeInsets.only(right: 12),
|
||||||
child: TextField(
|
child: TextField(
|
||||||
autofocus: widget.autofocus,
|
autofocus: widget.autofocus,
|
||||||
autocorrect: false,
|
autocorrect: widget.autocorrect,
|
||||||
|
enableSuggestions: widget.autocorrect,
|
||||||
|
keyboardType: widget.autocorrect ? null : TextInputType.visiblePassword,
|
||||||
controller: _searchController,
|
controller: _searchController,
|
||||||
onChanged: widget.onChanged,
|
onChanged: widget.onChanged,
|
||||||
focusNode: _focusNode,
|
focusNode: _focusNode,
|
||||||
|
Loading…
Reference in New Issue
Block a user