mirror of
https://github.com/bitwarden/mobile.git
synced 2024-11-15 10:25:20 +01:00
PM-3350 Added new style to prevent spell check and text prediction
This commit is contained in:
parent
4472d7f9a8
commit
cd33c7f608
@ -37,7 +37,7 @@
|
||||
Text="{Binding BaseUrl}"
|
||||
Keyboard="Url"
|
||||
Placeholder="ex. https://bitwarden.company.com"
|
||||
StyleClass="box-value"
|
||||
StyleClass="box-value, no-keyboard-auto-help"
|
||||
ReturnType="Go"
|
||||
ReturnCommand="{Binding SubmitCommand}"
|
||||
AutomationId="ServerUrlEntry"/>
|
||||
@ -59,7 +59,7 @@
|
||||
x:Name="_webVaultEntry"
|
||||
Text="{Binding WebVaultUrl}"
|
||||
Keyboard="Url"
|
||||
StyleClass="box-value"
|
||||
StyleClass="box-value, no-keyboard-auto-help"
|
||||
AutomationId="WebVaultUrlEntry"/>
|
||||
</StackLayout>
|
||||
<StackLayout StyleClass="box-row">
|
||||
@ -70,7 +70,7 @@
|
||||
x:Name="_apiEntry"
|
||||
Text="{Binding ApiUrl}"
|
||||
Keyboard="Url"
|
||||
StyleClass="box-value"
|
||||
StyleClass="box-value, no-keyboard-auto-help"
|
||||
AutomationId="ApiUrlEntry"/>
|
||||
</StackLayout>
|
||||
<StackLayout StyleClass="box-row">
|
||||
@ -81,7 +81,7 @@
|
||||
x:Name="_identityEntry"
|
||||
Text="{Binding IdentityUrl}"
|
||||
Keyboard="Url"
|
||||
StyleClass="box-value"
|
||||
StyleClass="box-value, no-keyboard-auto-help"
|
||||
AutomationId="IdentityUrlEntry"/>
|
||||
</StackLayout>
|
||||
<StackLayout StyleClass="box-row">
|
||||
@ -92,7 +92,7 @@
|
||||
x:Name="_iconsEntry"
|
||||
Text="{Binding IconsUrl}"
|
||||
Keyboard="Url"
|
||||
StyleClass="box-value"
|
||||
StyleClass="box-value, no-keyboard-auto-help"
|
||||
ReturnType="Go"
|
||||
ReturnCommand="{Binding SubmitCommand}"
|
||||
AutomationId="IconsUrlEntry"/>
|
||||
|
@ -50,11 +50,10 @@
|
||||
x:Name="_email"
|
||||
Text="{Binding Email}"
|
||||
Keyboard="Email"
|
||||
StyleClass="box-value"
|
||||
StyleClass="box-value, no-keyboard-auto-help"
|
||||
ReturnType="Go"
|
||||
ReturnCommand="{Binding ContinueCommand}"
|
||||
AutomationId="EmailAddressEntry"
|
||||
>
|
||||
AutomationId="EmailAddressEntry">
|
||||
<VisualStateManager.VisualStateGroups>
|
||||
<VisualStateGroup x:Name="CommonStates">
|
||||
<VisualState x:Name="Disabled">
|
||||
|
@ -557,6 +557,12 @@
|
||||
</Keyboard>
|
||||
</Setter>
|
||||
</Style>
|
||||
<Style TargetType="InputView"
|
||||
Class="no-keyboard-auto-help"
|
||||
ApplyToDerivedTypes="True">
|
||||
<Setter Property="IsSpellCheckEnabled" Value="False" />
|
||||
<Setter Property="IsTextPredictionEnabled" Value="False" />
|
||||
</Style>
|
||||
|
||||
<Style TargetType="controls:CircularProgressbarView">
|
||||
<Setter Property="ProgressColor"
|
||||
|
Loading…
Reference in New Issue
Block a user