23 lines
545 B
Swift
23 lines
545 B
Swift
import SwiftUI
|
|
|
|
struct RegistrationScreen: View {
|
|
@EnvironmentObject var navigation: NavigationStore
|
|
|
|
public var body: some View {
|
|
ZStack {
|
|
Color.Material.Background.light
|
|
Button {
|
|
withAnimation {
|
|
navigation.flow = .entering(.welcome)
|
|
}
|
|
} label: {
|
|
VStack {
|
|
Text("Not yet implemented")
|
|
Text(L10n.Global.back)
|
|
}
|
|
}
|
|
}
|
|
.ignoresSafeArea()
|
|
}
|
|
}
|