Hi Guys,
I have some property which I am using from Page2 in Page1ViewModel, When I navigate to Page2 I have changed that property and on coming back by doing NavigiationPop.
Page1is not re-loaded/ refreshed at all as I have set the BindingContext in the constructor of Page1, which is loaded only once.
The solution which is working for me is
Setting the BindingContext to the ViewModel on "onAppearing()", usually its not consider the best practice. But I also need to refresh the values which I have changed on Page2.
Looking forward for your valuable inputs and suggestions.
Also Pros/Cons of Setting the BindingContext in OnAppearing.
Thanks,
Hemant