This commit is contained in:
Conrad Kramer 2024-03-30 16:47:59 -07:00
parent cb1bc1c8aa
commit 86594fb663
10 changed files with 507 additions and 81 deletions

View file

@ -7,6 +7,12 @@ struct BurrowApp: App {
var body: some Scene {
WindowGroup {
BurrowView()
.onOpenURL { url in
print(url)
}
.onContinueUserActivity(NSUserActivityTypeBrowsingWeb) { userActivity in
print(userActivity.webpageURL)
}
}
}
}