import SwiftUI struct OnboardingView: View { @State private var showWelcome = false var body: some View { VStack { Button("Continue") { showWelcome = true } .accessibilityIdentifier("onboarding-continue") if showWelcome { Text("Welcome") .accessibilityIdentifier("welcome-title") } } } }