rotorgames / Rg.Plugins.Popup

Xamarin Forms popup plugin
MIT License
1.15k stars 336 forks source link

How to redict to a different page than original parent from a Popup #725

Open Vuyiswamb opened 2 years ago

Vuyiswamb commented 2 years ago

Good Day

i open the Popoup created in Rg.Plugins.Popup (https://github.com/rotorgames/Rg.Plugins.Popup)

the following code closes the popup and navigate to a different page which is different from its parent

           await PopupNavigation.Instance.PopAsync(); 
                await Navigation.PushAsync(new CustomerDelivery(lstOrders));

but the code just close the Popup and remain in the Parent.

Thanks