Hi, There was a mistake in previous solution, all the pages can be swiped back.
I've finally able to reproduce my problem in this solution please take a look.
The problem is when I hide navigationbar with this code, "NavigationPage.SetHasNavigationBar(this, false);".
The iOS swipe to navigate back gesture will be disabled along with the navigation bar.
But i could enable it back with this code as you can see in "swipeback.cs"
ViewController.NavigationController.InteractivePopGestureRecognizer.Enabled = true;
ViewController.NavigationController.InteractivePopGestureRecognizer.Delegate = this;
With this code, The first page can be swiped back even with the default navigationbar hidden .
But when there is a SfListview with HeaderTemplate on the page as in page2, you won't be able to swipe back.
I've tried with a standard list view with header and have no problem, even sflistview without header is fine, this only happen when SfListview with header is on that page.
Thanks.
Attachment:
cantswipeback_c43ef61.zip