public async void NavigationBarSetUp() { if (this.NavigationController != null) { //TODO: figure out how to make the status bar opaque. this.NavigationController.NavigationBar.BarStyle = UIBarStyle.BlackOpaque; this.NavigationController.NavigationBar.SetBackgroundImage(new UIImage(), UIBarMetrics.Default); this.NavigationController.NavigationBar.ShadowImage = new UIImage(); this.NavigationController.NavigationBar.BarTintColor = UIColor.FromRGB(75, 171, 229); } else { } NavigationController.NavigationBar.Hidden = false; NavigationController.NavigationBar.Translucent = false; float imageSize = 20f; float gap = 5f; float borderSize = 0f; float textHeight = 1f; float buttonWidth = 60; float buttonHeight = borderSize * 2 + gap * 3 + imageSize + textHeight; float imageOrigin = borderSize + gap; float textTop = imageOrigin + imageSize + gap; float textBottom = borderSize + gap; float imageBottom = textBottom + textHeight + gap; //Image UIImage logout = new UIImage("logo.png"); UIImage post = new UIImage("Icon ionic-ios-arrow-back.png"); //UIImage post = new UIImage("HomeIcon.png"); UIImage right_image = new UIImage("menu_icon.png"); UIImageView bar_image = new UIImageView(UIImage.FromBundle("DIP_logo.jpg")); UIView container = new UIView(); UIView center_view = new UIView(); container.Frame = new CGRect(20, 18, this.View.Frame.Width / 14, this.View.Frame.Height / 23); UILabel notification = new UILabel(); //notification.Text = ViewModel.Notificationscount.ToString(); notification.Font = UIFont.FromName("Helvetica-Bold", 12f); notification.TextColor = UIColor.White; notification.TextAlignment = UITextAlignment.Center; notification.Frame = new CGRect((container.Frame.Width / 2) - ((this.View.Frame.Width / 16) / 2), (container.Frame.Height / 2) - ((this.View.Frame.Height / 23) / 2), this.View.Frame.Width / 16, this.View.Frame.Height / 23); container.Layer.CornerRadius = container.Frame.Height / 2; //NavigationItem.LeftBarButtonItem = new UIBarButtonItem(notification); UIButton leftButton = UIButton.FromType(UIButtonType.Custom); UIButton rigthButton = UIButton.FromType(UIButtonType.Custom); leftButton.UserInteractionEnabled = true; //this.View.InsertSubview(new UIImageView(UIImage.FromBundle("Images/bg.jpg")), 0); //container.AddSubview(notification); //container.BackgroundColor = PorpoiseColors.Magenta; leftButton.Bounds = new CGRect(0, 0, post.Size.Width, post.Size.Height); leftButton.Frame = new CGRect(0, 0, 30, 30); post.ApplyTintColor(UIColor.FromRGB(246, 194, 96)); UIImage original_image = post.ImageWithRenderingMode(UIImageRenderingMode.AlwaysTemplate); leftButton.SetImage(original_image, UIControlState.Normal); leftButton.TintColor = UIColor.FromRGB(246, 194, 96); //leftButton.SetImage(post, UIControlState.Disabled); //leftButton.BackgroundColor = UIColor.FromRGB(246, 194, 96); rigthButton.Bounds = new CGRect(0, 0, right_image.Size.Width, right_image.Size.Height); rigthButton.Frame = new CGRect(0, 0, 30, 30); rigthButton.SetImage(right_image, UIControlState.Normal); rigthButton.SetImage(right_image, UIControlState.Disabled); var leftButtonWidth = leftButton.WidthAnchor.ConstraintEqualTo(post.Size.Width); var leftButtonHeight = leftButton.HeightAnchor.ConstraintEqualTo(post.Size.Height); var rightButtonWidth = rigthButton.WidthAnchor.ConstraintEqualTo(right_image.Size.Width); var rightButtonHeight = rigthButton.HeightAnchor.ConstraintEqualTo(right_image.Size.Height); leftButtonWidth.Active = true; leftButtonHeight.Active = true; rightButtonWidth.Active = true; rightButtonHeight.Active = true; //leftButton.AddSubview(container); leftButton.TouchUpInside += delegate { ViewModel.ShowHome(); Console.WriteLine("pushing here"); //ViewModel.GoToNotifications(); }; rigthButton.TouchUpInside += delegate { ViewModel.ShowSettings(); Console.WriteLine("pushing here"); //ViewModel.GoToNotifications(); }; rigthButton.UserInteractionEnabled = true; NavigationItem.LeftBarButtonItem = new UIBarButtonItem(leftButton); NavigationItem.RightBarButtonItem = new UIBarButtonItem(rigthButton); //UILabel label = new UILabel(); //NavigationItem.LeftBarButtonItem.CustomView.Subviews.Append(label); //NavigationItem.Title = "Porpoise"; NavigationItem.TitleView = new UIImageView(UIImage.FromBundle("DIP_logo.png")); }