Hello,
Welcome to Microsoft Q&A!
You could refresh the data in OnAppearing
method or Shell.Current.Navigated
event .
OnAppearing
protected override void OnAppearing()
{
base.OnAppearing();
//refresh the data
}
Shell.Current.Navigated
public YourPage()
{
InitializeComponent();
Shell.Current.Navigated += (sender,e) => {
if(e.Source == ShellNavigationSource.Pop)
{
//refresh the data
}
};
}
If the response is helpful, please click "Accept Answer" and upvote it.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.