1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-16 08:13:20 +00:00

new autofill options

This commit is contained in:
Kyle Spearrin
2019-06-03 10:45:27 -04:00
parent 59f1dcca12
commit 8658ebd6bb
6 changed files with 214 additions and 42 deletions

View File

@@ -19,6 +19,7 @@ namespace Bit.App.Pages
_clearClipboardPicker.ItemDisplayBinding = new Binding("Value");
if(Device.RuntimePlatform == Device.Android)
{
_vm.AndroidOptions = true;
_themeDescriptionLabel.Text = string.Concat(_themeDescriptionLabel.Text, " ",
AppResources.RestartIsRequired);
}
@@ -29,5 +30,16 @@ namespace Bit.App.Pages
base.OnAppearing();
await _vm.InitAsync();
}
protected async override void OnDisappearing()
{
base.OnDisappearing();
await _vm.UpdateAutofillBlacklistedUris();
}
private async void BlacklistedUrisEditor_Unfocused(object sender, FocusEventArgs e)
{
await _vm.UpdateAutofillBlacklistedUris();
}
}
}