19 lines
611 B
Swift
19 lines
611 B
Swift
import SwiftUI
|
|
|
|
struct OnboardingView: View {
|
|
var body: some View {
|
|
VStack(alignment: .leading, spacing: 12) {
|
|
Text("Study intro")
|
|
.font(.headline)
|
|
Text("Watch the clip, make your choice before lock, then see the reveal.")
|
|
.foregroundStyle(.secondary)
|
|
Button("Start session") {}
|
|
.buttonStyle(.borderedProminent)
|
|
}
|
|
.padding()
|
|
.background(HermesTheme.surface)
|
|
.foregroundStyle(HermesTheme.textPrimary)
|
|
.clipShape(RoundedRectangle(cornerRadius: 20, style: .continuous))
|
|
}
|
|
}
|