You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It's better to use URL structure as a dynamic variable. @State var currentUrl = URL(string: "(Initial website)")!
And click a button to pass a different URL. currentUrl = URL(string: "(Website you want to open)")!
initial
var url = "https://www.github.com"
after click a button or other event,
url
become another valueurl = "https://www.google.com"
the SafariView how to load the lasted url
The text was updated successfully, but these errors were encountered: