-
Notifications
You must be signed in to change notification settings - Fork 334
Migration from v1.0.x to v1.1.x
The plugin has some changes between v1.0.x and v1.1.x. These changes allow you to use the plugin better and they improve performance and stability.
Beginning with v1.1.x the plugin must be initialized for each platform. See more information here.
Beginning with v1.1.x you should not use PopupNavigation globally. You should use the instance of the IPopupNavigation. See for more information
- IsAnimating to IsAnimationEnabled
-
Task OnAppearingAnimationEnd()tovoid OnAppearingAnimationEnd()- To use asyncOnAppearingAnimationEndmethod just useTask OnAppearingAnimationEndAsync() -
Task OnDisappearingAnimationBegin()tovoid OnDisappearingAnimationBegin()- To use asyncOnDisappearingAnimationBeginmethod just useTask OnDisappearingAnimationBeginAsync()
You can see all new features of PopupPage here.
After updating to v1.1.x popup pages will not disappear when an android hardware back button is pressed. It happens because the plugin has used reflection for overriding an android back button. I think that it has been a dirty code and it has had a lot of problems. See it for adding an android back button support