I have following code, that display SafariView in sheet.
Button(action: {self.showLogin = true}) {
Text("OpenURL")
}
.sheet(isPresented: self.$showLogin) {
SFSafariViewWrapper(url: URL(string: "https://google.com")!)
}
How can i get URL, when it changes in SafariView (by user)?