I have this code in my page ;
<syncfusion:SfPopup IsOpen="{Binding SettingsPopupOpen}" AppearanceMode="OneButton" StaysOpen="True" HeightRequest="400" ShowFooter="True" AcceptButtonText="OK" HeaderTitle="Opzioni" x:Name="popupStyle">
<syncfusion:SfPopup.PopupStyle>
<syncfusion:PopupStyle MessageBackground="{AppThemeBinding Light=#fff,Dark=#333}"
MessageTextColor="{AppThemeBinding Light=#333,Dark=#aaa}"
FooterBackground="{AppThemeBinding Light=#fff,Dark=#333}"
HeaderBackground="{AppThemeBinding Light=#fff,Dark=#333}"
HeaderTextColor="{AppThemeBinding Light=#333,Dark=#aaa}"
/>
</syncfusion:SfPopup.PopupStyle>
<syncfusion:SfPopup.ContentTemplate>
... etc
But if I change theme style dpes not updatem, I've also tryied setting in code behind via
sfPopUp.BackgroundColor = App.Current.UserAppTheme == AppTheme.Light ? Colors.White: Color.FromHex("333333") ;
sfPopUp.PopupStyle.HeaderTextColor= App.Current.UserAppTheme == AppTheme.Light ? Color.FromHex("333333") : Colors.White;
sfPopUp.PopupStyle.AcceptButtonTextColor = App.Current.UserAppTheme == AppTheme.Light ? Color.FromHex("333333") : Colors.White;
when I change theme (via a SfSegmentedControl in its event "SelectionChanged") but also here no changes in my view.
Is possibile to update visual properties (background and textcolor in my specific case) when I change