Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions lib/services/feedback/custom_feedback_form.dart
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@ class CustomFeedbackForm extends StatelessWidget {
maxLength: feedbackMaxLength,
maxLengthEnforcement: MaxLengthEnforcement.enforced,
enabled: !isLoading,
autofocus: true,
hintText: 'Enter your feedback here...',
errorText: state.feedbackTextError,
validationMode: InputValidationMode.eager,
Expand Down
1 change: 1 addition & 0 deletions lib/shared/ui/borderless_search_field.dart
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ class BorderLessSearchField extends StatelessWidget {
child: TextField(
key: const Key('search-field'),
onChanged: onChanged,
autofocus: true,
decoration: InputDecoration(
hintText: LocaleKeys.search.tr(),
border: OutlineInputBorder(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@ class _TrezorHiddenWalletState extends State<_TrezorHiddenWallet> {
key: _formKey,
child: UiTextFormField(
controller: _passphraseController,
autofocus: true,
hintText: LocaleKeys.passphrase.tr(),
keyboardType: TextInputType.emailAddress,
obscureText: true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ class _PasswordDialogContentState extends State<PasswordDialogContent> {
UiTextFormField(
key: const Key('confirmation-showing-seed-phrase'),
controller: _passwordController,
autofocus: true,
autocorrect: false,
obscureText: _isObscured,
inputFormatters: [LengthLimitingTextInputFormatter(40)],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ class _DexListFilterCoinsListState extends State<DexListFilterCoinsList> {
children: [
UiTextFormField(
hintText: LocaleKeys.searchAssets.tr(),
autofocus: true,
onChanged: (String? searchPhrase) {
setState(() {
_searchPhrase = searchPhrase ?? '';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ class ToAddressField extends StatelessWidget {
builder: (context, state) {
return UiTextFormField(
key: const Key('withdraw-recipient-address-input'),
autofocus: true,
autocorrect: false,
textInputAction: TextInputAction.next,
enableInteractiveSelection: true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ class _FillFormRecipientAddressState extends State<FillFormRecipientAddress> {
UiTextFormField(
key: const Key('withdraw-recipient-address-input'),
controller: _addressController,
autofocus: true,
autocorrect: false,
textInputAction: TextInputAction.next,
enableInteractiveSelection: true,
Expand Down
1 change: 1 addition & 0 deletions lib/views/wallet/coins_manager/coins_manager_controls.dart
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ class CoinsManagerFilters extends StatelessWidget {
? theme.custom.coinsManagerTheme.searchFieldMobileBackgroundColor
: null,
autocorrect: false,
autofocus: true,
textInputAction: TextInputAction.none,
enableInteractiveSelection: true,
prefixIcon: const Icon(Icons.search, size: 18),
Expand Down
1 change: 1 addition & 0 deletions lib/views/wallets_manager/widgets/wallet_deleting.dart
Original file line number Diff line number Diff line change
Expand Up @@ -215,6 +215,7 @@ class _PasswordFieldState extends State<_PasswordField> {
return UiTextFormField(
key: const Key('delete-wallet-password'),
controller: widget.controller,
autofocus: true,
autocorrect: false,
obscureText: _isObscured,
errorText: widget.errorText,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ class _WalletImportByFileState extends State<WalletImportByFile> {
UiTextFormField(
key: const Key('file-password-field'),
controller: _filePasswordController,
autofocus: true,
textInputAction: TextInputAction.next,
autocorrect: false,
enableInteractiveSelection: true,
Expand Down
1 change: 1 addition & 0 deletions lib/views/wallets_manager/widgets/wallet_login.dart
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,7 @@ class _PasswordTextFieldState extends State<PasswordTextField> {
children: [
UiTextFormField(
key: const Key('create-password-field'),
autofocus: true,
textInputAction: TextInputAction.next,
autocorrect: false,
controller: widget.controller,
Expand Down
Loading