Seam Mobile Components for iOS
Learn how to set up Seam Mobile Components in your iOS project using Swift Package Manager, drop in SeamAccessView for a complete unlock flow, and customize the look with SeamTheme.
Prerequisites
Installation
dependencies: [
.package(url: "https://github.com/seamapi/iOS", from: "1.0.0")
]import SeamComponentsQuick Start: SeamAccessView
SeamAccessViewimport SwiftUI
import SeamSDK
import SeamComponents
struct ContentView: View {
init() {
try? Seam.initialize(clientSessionToken: "YOUR_CLIENT_SESSION_TOKEN")
}
var body: some View {
SeamAccessView()
}
}How It Works with the Seam Mobile SDK
Customization with SeamTheme
SeamThemeSee Also
Last updated
Was this helpful?

