-1

I have a bit of code that uses the Community Toolkit popup control. It works fine in iOS but no text is shown in Android. When I put a breakpoint, it does not appear to hit the breakpoint -- nor does it appear to hit other breakpoints.

var popup = new SwipePopUp
{
    CheckBoxText=CheckboxLabelText,
    GotItText=GotItText,
    CentralText=CentralText,
    Size=size
};
App.Current.MainPage.Navigation.ShowPopup(popup);

Any thoughts? Thanks!

Jesse Liberty
  • 1,314
  • 1
  • 11
  • 26

1 Answers1

0

We have discovered that while iOS does not need OnPropertyChanged, Android does, and adding that fixed the problem.

Thanks!

Jesse Liberty
  • 1,314
  • 1
  • 11
  • 26