https://github.com/swiftui-plus/browsers
A package that provides support for both WebView and SafariView (iOS, macOS).
https://github.com/swiftui-plus/browsers
browser ios macos safari swift swiftui watchos webview
Last synced: 13 days ago
JSON representation
A package that provides support for both WebView and SafariView (iOS, macOS).
- Host: GitHub
- URL: https://github.com/swiftui-plus/browsers
- Owner: SwiftUI-Plus
- License: mit
- Created: 2021-08-31T17:20:51.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-09-29T15:55:59.000Z (over 3 years ago)
- Last Synced: 2025-03-27T04:12:39.092Z (about 1 month ago)
- Topics: browser, ios, macos, safari, swift, swiftui, watchos, webview
- Language: Swift
- Homepage: https://benkau.com/packages.json
- Size: 17.6 KB
- Stars: 5
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README

# Browsers
> Also available as a part of my [SwiftUI+ Collection](https://benkau.com/packages.json) – just add it to Xcode 13+
A package that provides support for both WebView and SafariViewController (including proper presentation).
## SafariView
```swift
@State private var url: URL?var body: some View {
Button {
url = URL(string: "https://benkau.com")
} label: {
Text("Show Safari")
}
.safari(url: $url, style: .fullScreen) { url in
Safari(
configuration: SFSafariViewController.Configuration(),
activities: { url, title in [] },
excludedActivities: { url, title in [] },
preferredBarTintColor: .systemBackground,
preferredControlTintColor: .label,
dismissButtonStyle: .close
)
}
}
```## WebView
> Coming soon
## Installation
The code is packaged as a framework. You can install manually (by copying the files in the `Sources` directory) or using Swift Package Manager (**preferred**)
To install using Swift Package Manager, add this to the `dependencies` section of your `Package.swift` file:
`.package(url: "https://github.com/SwiftUI-Plus/Browsers.git", .upToNextMinor(from: "1.0.0"))`
## Other Packages
If you want easy access to this and more packages, add the following collection to your Xcode 13+ configuration:
`https://benkau.com/packages.json`