Hi,
From my HomePage (ContentPage) which is the parent I am opening the AboutMerchant (ContentView) this way:
var view = new AboutMerchant();
view.GetMerchantProfile();
DynamicPageView.Children.Clear();
DynamicPageView.Children.Add(view);
Now from the AboutMerchant, I want to open MySetting (ContentView) as a view in the HomePage parent as well so it's kind of redirect.
How can I do that please?
Thanks,
Jassim