don't auto-capitalize password field when viewed
This commit is contained in:
parent
429e62e6b5
commit
58084810f3
|
@ -563,7 +563,15 @@
|
||||||
IsVisible="{Binding IsHiddenType}"
|
IsVisible="{Binding IsHiddenType}"
|
||||||
IsPassword="{Binding ShowHiddenValue, Converter={StaticResource inverseBool}}"
|
IsPassword="{Binding ShowHiddenValue, Converter={StaticResource inverseBool}}"
|
||||||
IsSpellCheckEnabled="False"
|
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
|
<Switch
|
||||||
IsToggled="{Binding BooleanValue}"
|
IsToggled="{Binding BooleanValue}"
|
||||||
Grid.Row="0"
|
Grid.Row="0"
|
||||||
|
|
|
@ -73,6 +73,8 @@ namespace Bit.App.Pages
|
||||||
_folderPicker.ItemDisplayBinding = new Binding("Key");
|
_folderPicker.ItemDisplayBinding = new Binding("Key");
|
||||||
_ownershipPicker.ItemDisplayBinding = new Binding("Key");
|
_ownershipPicker.ItemDisplayBinding = new Binding("Key");
|
||||||
|
|
||||||
|
_loginPasswordEntry.Keyboard = Keyboard.Create(KeyboardFlags.None);
|
||||||
|
|
||||||
_nameEntry.ReturnType = ReturnType.Next;
|
_nameEntry.ReturnType = ReturnType.Next;
|
||||||
_nameEntry.ReturnCommand = new Command(() =>
|
_nameEntry.ReturnCommand = new Command(() =>
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue