1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-05 23:53:33 +00:00

black theme option

This commit is contained in:
Kyle Spearrin
2019-06-02 00:08:20 -04:00
parent dd976b5b86
commit 479ad31325
6 changed files with 21 additions and 1 deletions

View File

@@ -59,6 +59,10 @@ namespace Bit.App.Pages
new KeyValuePair<string, string>("light", AppResources.Light),
new KeyValuePair<string, string>("dark", AppResources.Dark),
};
if(Device.RuntimePlatform == Device.Android)
{
ThemeOptions.Add(new KeyValuePair<string, string>("black", AppResources.Black));
}
UriMatchOptions = new List<KeyValuePair<UriMatchType?, string>>
{
new KeyValuePair<UriMatchType?, string>(UriMatchType.Domain, AppResources.BaseDomain),