diff --git a/src/App/Controls/LabeledValueCell.cs b/src/App/Controls/LabeledValueCell.cs index 96ca450a5..2ae2a7520 100644 --- a/src/App/Controls/LabeledValueCell.cs +++ b/src/App/Controls/LabeledValueCell.cs @@ -59,7 +59,8 @@ namespace Bit.App.Controls Text = button1Text, HorizontalOptions = LayoutOptions.End, VerticalOptions = LayoutOptions.Center, - Margin = new Thickness(0) + Margin = new Thickness(0), + TextColor = Color.FromHex("3c8dbc") }; buttonStackLayout.Children.Add(Button1); @@ -72,7 +73,8 @@ namespace Bit.App.Controls Text = button2Text, HorizontalOptions = LayoutOptions.End, VerticalOptions = LayoutOptions.Center, - Margin = new Thickness(0) + Margin = new Thickness(0), + TextColor = Color.FromHex("3c8dbc") }; buttonStackLayout.Children.Add(Button2); diff --git a/src/iOS.Extension/ActionViewController.cs b/src/iOS.Extension/ActionViewController.cs index 4f68379f2..242bc3660 100644 --- a/src/iOS.Extension/ActionViewController.cs +++ b/src/iOS.Extension/ActionViewController.cs @@ -19,6 +19,14 @@ namespace Bit.iOS.Extension public Context Context { get; set; } + public override void ViewWillAppear(bool animated) + { + UINavigationBar.Appearance.ShadowImage = new UIImage(); + UINavigationBar.Appearance.SetBackgroundImage(new UIImage(), UIBarMetrics.Default); + + base.ViewWillAppear(animated); + } + public override void ViewDidLoad() { base.ViewDidLoad(); diff --git a/src/iOS/AppDelegate.cs b/src/iOS/AppDelegate.cs index 09c5932a4..9644c9ca1 100644 --- a/src/iOS/AppDelegate.cs +++ b/src/iOS/AppDelegate.cs @@ -54,6 +54,9 @@ namespace Bit.iOS Resolver.Resolve(), Resolver.Resolve())); + UINavigationBar.Appearance.ShadowImage = new UIImage(); + UINavigationBar.Appearance.SetBackgroundImage(new UIImage(), UIBarMetrics.Default); + return base.FinishedLaunching(app, options); } diff --git a/src/iOS/Controls/ExtendedTabbedPageRenderer.cs b/src/iOS/Controls/ExtendedTabbedPageRenderer.cs index 80fa57254..572af79e3 100644 --- a/src/iOS/Controls/ExtendedTabbedPageRenderer.cs +++ b/src/iOS/Controls/ExtendedTabbedPageRenderer.cs @@ -1,6 +1,7 @@ using System; using Bit.App.Controls; using Bit.iOS.Controls; +using Foundation; using UIKit; using Xamarin.Forms; using Xamarin.Forms.Platform.iOS; @@ -19,6 +20,10 @@ namespace Bit.iOS.Controls TabBar.TintColor = page.TintColor.ToUIColor(); TabBar.BarTintColor = page.BarTintColor.ToUIColor(); TabBar.BackgroundColor = page.BackgroundColor.ToUIColor(); + + // remove top border + // ref: http://stackoverflow.com/questions/14371343/ios-uitabbar-remove-top-shadow-gradient-line + TabBar.SetValueForKeyPath(FromObject(true), new NSString("_hidesShadow")); } public override void ViewWillAppear(bool animated) diff --git a/src/iOS/Resources/ion_chevron_right.png b/src/iOS/Resources/ion_chevron_right.png deleted file mode 100644 index dd7cb2406..000000000 Binary files a/src/iOS/Resources/ion_chevron_right.png and /dev/null differ diff --git a/src/iOS/Resources/ion_chevron_right@2x.png b/src/iOS/Resources/ion_chevron_right@2x.png deleted file mode 100644 index 33666e303..000000000 Binary files a/src/iOS/Resources/ion_chevron_right@2x.png and /dev/null differ diff --git a/src/iOS/Resources/ion_chevron_right@3x.png b/src/iOS/Resources/ion_chevron_right@3x.png deleted file mode 100644 index 8df8be9aa..000000000 Binary files a/src/iOS/Resources/ion_chevron_right@3x.png and /dev/null differ diff --git a/src/iOS/Resources/plus.png b/src/iOS/Resources/plus.png index 9b0bfe3b7..b6ce2b9ce 100644 Binary files a/src/iOS/Resources/plus.png and b/src/iOS/Resources/plus.png differ diff --git a/src/iOS/Resources/plus@2x.png b/src/iOS/Resources/plus@2x.png index 6a3ee23da..207029feb 100644 Binary files a/src/iOS/Resources/plus@2x.png and b/src/iOS/Resources/plus@2x.png differ diff --git a/src/iOS/Resources/plus@3x.png b/src/iOS/Resources/plus@3x.png index b2c953167..85ef49857 100644 Binary files a/src/iOS/Resources/plus@3x.png and b/src/iOS/Resources/plus@3x.png differ diff --git a/src/iOS/iOS.csproj b/src/iOS/iOS.csproj index 9eecce1e3..d6deab4d7 100644 --- a/src/iOS/iOS.csproj +++ b/src/iOS/iOS.csproj @@ -264,15 +264,6 @@ - - - - - - - - -