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

iOS 14 navigation workaround #15

Open
carmelogallo opened this issue Feb 4, 2022 · 0 comments
Open

iOS 14 navigation workaround #15

carmelogallo opened this issue Feb 4, 2022 · 0 comments
Labels
bug Something isn't working

Comments

@carmelogallo
Copy link
Contributor

In iOS 14 the .fullScreenCover and .sheet modifier can't be more than one per view so we use the workaround found on this thread.

case .fullscreen:
    // In iOS 14 the .fullScreenCover modifier can't be more than one per view
    // so we use the workaround found on this thread.
    // https://stackoverflow.com/a/64403206/2242854
    if #available(iOS 15, *) {
        content.fullScreenCover(isPresented: $state.isPresented) { LazyView(navigationContent()) }
    } else {
        Group {
            EmptyView().fullScreenCover(isPresented: $state.isPresented) { LazyView(navigationContent()) }
            content
        }
    }
case .sheet:
    // In iOS 14 the .sheet modifier can't be more than one per view
    // so we use the workaround found on this thread.
    // https://stackoverflow.com/a/64403206/2242854
    if #available(iOS 15, *) {
        content.sheet(isPresented: $state.isPresented) { LazyView(navigationContent()) }
    } else {
        Group {
            EmptyView().sheet(isPresented: $state.isPresented) { LazyView(navigationContent()) }
            content
        }
    }
@carmelogallo carmelogallo added the bug Something isn't working label Feb 4, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant