mirror of
https://github.com/bitwarden/mobile
synced 2025-12-17 08:43:21 +00:00
ios app extension theming
This commit is contained in:
@@ -1,3 +1,4 @@
|
||||
using Bit.iOS.Core.Utilities;
|
||||
using System;
|
||||
using UIKit;
|
||||
|
||||
@@ -15,6 +16,13 @@ namespace Bit.iOS.Extension
|
||||
public override UIBarButtonItem BaseSelectBarButton => SelectBarButton;
|
||||
public override UILabel BasePasswordLabel => PasswordLabel;
|
||||
|
||||
public override void ViewDidLoad()
|
||||
{
|
||||
base.ViewDidLoad();
|
||||
CancelBarButton.TintColor = ThemeHelpers.NavBarTextColor;
|
||||
SelectBarButton.TintColor = ThemeHelpers.NavBarTextColor;
|
||||
}
|
||||
|
||||
partial void SelectBarButton_Activated(UIBarButtonItem sender)
|
||||
{
|
||||
DismissViewController(true, () => Parent.PasswordCell.TextField.Text = PasswordLabel.Text);
|
||||
|
||||
Reference in New Issue
Block a user