Hi, Im trying to change the navbarcolor (background and title) without reloading the page. When the colorchange trigger this code runs on the specific IOS platform.
`[assembly: Xamarin.Forms.Dependency(typeof(Color_iOS))]
namespace GSS.iOS.Providers.Color
{
public class Color_iOS : IColor
{
public void ChangeNavigationBarColor()
{
UINavigationBar.Appearance.BarTintColor = App.Context._ColorHelper.Background.ToUIColor();
UINavigationBar.Appearance.SetTitleTextAttributes(new UITextAttributes()
{
TextColor = App.Context._ColorHelper.MainTitleBlack.ToUIColor()
});
}
}
}`
But i dont see any changes until the next view is loaded. How do i solve this? Thank you!