We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi! Just pasted example code into my project:
`... .onTapGesture() {
self.presentingSafariView = true }.safariView(isPresented: $presentingSafariView) { SafariView( url: URL(string: "https://google.com")!, configuration: SafariView.Configuration( entersReaderIfAvailable: false, barCollapsingEnabled: true ) ) .preferredBarAccentColor(.clear) .preferredControlAccentColor(.accentColor) .dismissButtonStyle(.done) }`
When I tap, the Safari View opens two times, and I need to close two Safaris to get back into my app. Any ideas what could be causing this?
The text was updated successfully, but these errors were encountered:
Thank you, I've found solution in another thread.
Moving my row code into a separate view with its own url variable helped.
Sorry, something went wrong.
Can you give more information, please, as I am having the same issue?
append .safariView( to wrapper view will do helped
.safariView(
No branches or pull requests
Hi! Just pasted example code into my project:
`...
.onTapGesture() {
When I tap, the Safari View opens two times, and I need to close two Safaris to get back into my app. Any ideas what could be causing this?
The text was updated successfully, but these errors were encountered: