i'm developing an android app with xamarin forms. I have a Switch in a sidebar to know if the user want to Sync data in automatic or not. If i navigate (after changed the property's value) with Navigation.PushAsync(); it works. If i navigate with back hardware button the property has correct value but i see the old value (false).
in MyViewModel i have add NotifyPropertyChanged("Sync") to try to force the refresh of data but it doesn't work.
There is a way to refresh the view when i click back hardware button??