Previously, pages order was not kept correctly when a page was inserted.
Because of that, inserted page overlaps the next page's page transition.
e.g.
- Let page1 be pushed.
- Let page2 be inserted before page1.
- Pop page1.
Then page1's page transition is hidden by page2 because page2 is added
later so page2 overlaps page1.
Now, to resolve the above issue, the order of the inserted page is
updated based on its page index value.
navigationPages.Insert(index, page);
Add(page);
+ page.SiblingOrder = index;
page.Navigator = this;
if (index == PageCount - 1)
{