you guys literally need update this video of introducing the swifui webview. these apis even not exist...
https://developer.apple.com/videos/play/wwdc2025/231/
WebView tutorial on WWDC25
Recommended
The shipped API was page.navigations
, please use that instead. For example::
For example:
do {
for try await event in browserManager.page.navigations {
switch event {
case .committed:
case .finished:
case .receivedServerRedirect:
case .startedProvisionalNavigation:
}
}
} catch {
}