mirror of
https://github.com/bitwarden/mobile
synced 2025-12-18 17:23:18 +00:00
Turn off keyboard suggestions for password entry on vault add/edit
This commit is contained in:
@@ -45,6 +45,8 @@ namespace Bit.App.Pages
|
|||||||
useButton: true);
|
useButton: true);
|
||||||
PasswordCell.Button.Image = "eye";
|
PasswordCell.Button.Image = "eye";
|
||||||
PasswordCell.Button.Clicked += PasswordButton_Clicked;
|
PasswordCell.Button.Clicked += PasswordButton_Clicked;
|
||||||
|
PasswordCell.Entry.DisableAutocapitalize = true;
|
||||||
|
PasswordCell.Entry.Autocorrect = false;
|
||||||
|
|
||||||
var usernameCell = new FormEntryCell(AppResources.Username, nextElement: PasswordCell.Entry);
|
var usernameCell = new FormEntryCell(AppResources.Username, nextElement: PasswordCell.Entry);
|
||||||
usernameCell.Entry.DisableAutocapitalize = true;
|
usernameCell.Entry.DisableAutocapitalize = true;
|
||||||
|
|||||||
@@ -51,6 +51,8 @@ namespace Bit.App.Pages
|
|||||||
PasswordCell.Entry.Text = site.Password?.Decrypt();
|
PasswordCell.Entry.Text = site.Password?.Decrypt();
|
||||||
PasswordCell.Button.Image = "eye";
|
PasswordCell.Button.Image = "eye";
|
||||||
PasswordCell.Button.Clicked += PasswordButton_Clicked;
|
PasswordCell.Button.Clicked += PasswordButton_Clicked;
|
||||||
|
PasswordCell.Entry.DisableAutocapitalize = true;
|
||||||
|
PasswordCell.Entry.Autocorrect = false;
|
||||||
|
|
||||||
var usernameCell = new FormEntryCell(AppResources.Username, nextElement: PasswordCell.Entry);
|
var usernameCell = new FormEntryCell(AppResources.Username, nextElement: PasswordCell.Entry);
|
||||||
usernameCell.Entry.Text = site.Username?.Decrypt();
|
usernameCell.Entry.Text = site.Username?.Decrypt();
|
||||||
|
|||||||
Reference in New Issue
Block a user