-
Notifications
You must be signed in to change notification settings - Fork 337
Migration from v1.0.x to v1.1.x
Kirill edited this page Feb 11, 2018
·
5 revisions
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 a stable.
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() - That to use async OnAppearingAnimationEnd method just useTask
OnAppearingAnimationEndAsync() -
Task
OnDisappearingAnimationBegin() tovoid
OnDisappearingAnimationBegin() - That to use async OnDisappearingAnimationBegin method 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 dirty code and it have a lot of problems. See it for adding an android back button support