You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I tried to set the headerbackgroundcolor from code behind, but it is also not successfully change.
var tv = Page.FindByName("tv");
if (App.AppTheme == App.Theme.Dark)
{
tv.HeaderBackgroundColor = Color.FromHex("#353535");
}
else
tv.HeaderBackgroundColor = Color.FromHex("#00C8FF");
The text was updated successfully, but these errors were encountered:
Hi,
When trying to switch Theme, the HeaderBackgroundColor does not reflect immediately. It only changed its color when reloading the whole page.
I tried to set the headerbackgroundcolor from code behind, but it is also not successfully change.
var tv = Page.FindByName("tv");
if (App.AppTheme == App.Theme.Dark)
{
tv.HeaderBackgroundColor = Color.FromHex("#353535");
}
else
tv.HeaderBackgroundColor = Color.FromHex("#00C8FF");
The text was updated successfully, but these errors were encountered: