mirror of
https://github.com/bitwarden/mobile
synced 2025-12-11 05:43:30 +00:00
totp text color changes with DynamicResource
This commit is contained in:
@@ -72,7 +72,11 @@ namespace Bit.App.Pages
|
||||
public bool TotpLow
|
||||
{
|
||||
get => _totpLow;
|
||||
set => SetProperty(ref _totpLow, value);
|
||||
set
|
||||
{
|
||||
SetProperty(ref _totpLow, value);
|
||||
Page.Resources["textTotp"] = Application.Current.Resources[value ? "text-danger" : "text-default"];
|
||||
}
|
||||
}
|
||||
|
||||
public async Task LoadAsync()
|
||||
|
||||
Reference in New Issue
Block a user