2024-06-19 15:15:27 +00:00
|
|
|
import SwiftUI
|
|
|
|
|
|
|
|
struct RegistrationScreen: View {
|
2024-08-11 00:28:01 +00:00
|
|
|
@EnvironmentObject var navigation: NavigationStore
|
2024-06-19 15:15:27 +00:00
|
|
|
|
|
|
|
public var body: some View {
|
|
|
|
ZStack {
|
2024-07-04 08:21:12 +00:00
|
|
|
Color.Material.Background.light
|
2024-06-19 15:15:27 +00:00
|
|
|
Button {
|
2024-08-11 00:28:01 +00:00
|
|
|
withAnimation {
|
|
|
|
navigation.flow = .entering(.welcome)
|
|
|
|
}
|
2024-06-19 15:15:27 +00:00
|
|
|
} label: {
|
|
|
|
VStack {
|
|
|
|
Text("Not yet implemented")
|
|
|
|
Text(L10n.Global.back)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.ignoresSafeArea()
|
|
|
|
}
|
|
|
|
}
|