1
0
mirror of https://github.com/bitwarden/mobile synced 2026-01-10 12:33:28 +00:00

revert back to default ios bar color. Added new Add Site view controller for extension (WIP)

This commit is contained in:
Kyle Spearrin
2016-07-07 20:53:01 -04:00
parent e7c78f6efa
commit 135f323372
10 changed files with 328 additions and 17 deletions

View File

@@ -13,19 +13,12 @@ namespace Bit.App.Controls
public static readonly BindableProperty TintColorProperty =
BindableProperty.Create(nameof(TintColor), typeof(Color), typeof(ExtendedTabbedPage), Color.White);
public static readonly BindableProperty BarTintColorProperty =
BindableProperty.Create(nameof(BarTintColor), typeof(Color), typeof(ExtendedTabbedPage), Color.White);
public Color TintColor
{
get { return (Color)GetValue(TintColorProperty); }
set { SetValue(TintColorProperty, value); }
}
public Color BarTintColor
{
get { return (Color)GetValue(BarTintColorProperty); }
set { SetValue(BarTintColorProperty, value); }
}
public bool NoBorder { get; set; }
}
}