I have created a page , mypage.xaml. On that page I have created a button, on which if I click It will open a popup page.
In the popup page entry field it's accepting some value as parameter and calling web service.And the web service is returning list to the popuppage.xaml.cs page. I configured the code to send the list from popup.xaml.cs to mypage.xaml.cs page.
But Every time I have to create new instance of mypage to send the list. And when new instance is created then the back button at top left corner is showing.I don't want to create new instance of mypage every time of call services.
Is is possible in xamarin to send the data from one page to another without creating instance everytime of that 'accept page'?