mirror of
https://github.com/bitwarden/android.git
synced 2024-10-31 23:25:45 +03:00
don't auto-capitalize password field when viewed
This commit is contained in:
parent
429e62e6b5
commit
58084810f3
2 changed files with 11 additions and 1 deletions
|
@ -563,7 +563,15 @@
|
|||
IsVisible="{Binding IsHiddenType}"
|
||||
IsPassword="{Binding ShowHiddenValue, Converter={StaticResource inverseBool}}"
|
||||
IsSpellCheckEnabled="False"
|
||||
IsTextPredictionEnabled="False" />
|
||||
IsTextPredictionEnabled="False">
|
||||
<Entry.Keyboard>
|
||||
<Keyboard x:FactoryMethod="Create">
|
||||
<x:Arguments>
|
||||
<KeyboardFlags>None</KeyboardFlags>
|
||||
</x:Arguments>
|
||||
</Keyboard>
|
||||
</Entry.Keyboard>
|
||||
</controls:MonoEntry>
|
||||
<Switch
|
||||
IsToggled="{Binding BooleanValue}"
|
||||
Grid.Row="0"
|
||||
|
|
|
@ -73,6 +73,8 @@ namespace Bit.App.Pages
|
|||
_folderPicker.ItemDisplayBinding = new Binding("Key");
|
||||
_ownershipPicker.ItemDisplayBinding = new Binding("Key");
|
||||
|
||||
_loginPasswordEntry.Keyboard = Keyboard.Create(KeyboardFlags.None);
|
||||
|
||||
_nameEntry.ReturnType = ReturnType.Next;
|
||||
_nameEntry.ReturnCommand = new Command(() =>
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue