Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Crashing/freezing on iOS 15 and greater (open issue from Xamarin) #49

Open
alexmartinezm opened this issue Apr 1, 2022 · 1 comment

Comments

@alexmartinezm
Copy link

Open issue: [Bug] [iOS] Freezing/App Crash during Navigation - new in iOS 15

Workaround:

  • Download the package and add it to your solution
  • Modify the TopTabbedRenderer with the following lines
        protected override void Dispose(bool disposing)
        {
            // Avoid disposing on iOS 15 due to open issue on GitHub: https://github.com/xamarin/Xamarin.Forms/issues/14783
            if (UIDevice.CurrentDevice.CheckSystemVersion(15, 0))
                return;

            [...]
        }
@tuyen-vuduc
Copy link
Contributor

@alexmartinezm It'll be great if you create a PR :) .

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants