1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-17 08:43:21 +00:00

Change password generator to use ColoredPassword (#686)

* Change password generator to use ColoredPassword

* Change ColoredPassword from FormattedString to HTML string for improved performance

* PasswordFormatter fixes

* Correct || to && condition

* Apply password colouring to history pages
This commit is contained in:
ShirokaiLon
2020-01-03 19:56:55 +00:00
committed by Kyle Spearrin
parent 051e15215d
commit a9dacd561c
7 changed files with 64 additions and 16 deletions

View File

@@ -53,7 +53,7 @@ namespace Bit.App.Pages
});
}
public FormattedString ColoredPassword => PasswordFormatter.FormatPassword(Password);
public string ColoredPassword => PasswordFormatter.FormatPassword(Password);
public bool IsPassword
{