79320685

Date: 2024-12-31 19:36:11
Score: 2
Natty:
Report link

Could you try pushing already formed page instead of forming new one every time and check if this fixes the problem? Like to change it to:

public partial class Sidebar : FlyoutPage
{
private ApplicationSettings AppSettingsPage;
    public Sidebar()
    {
        InitializeComponent();
        Detail = new NavigationPage(new MainPage());
        AppSettingsPage = new ApplicationSettings();
    }

 private async void GoToApplicationSettingsPage(object sender, TappedEventArgs e)
 {
    
     await Detail.Navigation.PushAsync(AppSettingsPage);
     IsPresented = false;
 }

}

Or try to change the behaviour from PushAsync to PushModalAsync, like

await Shell.Current.PushModalAsync(new ApplicationSettings());
Reasons:
  • RegEx Blacklisted phrase (1.5): fixes the problem?
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: aw3