21 lines
464 B
Swift
21 lines
464 B
Swift
|
import SwiftUI
|
||
|
|
||
|
struct RegistrationScreen: View {
|
||
|
// @EnvironmentObject var state: AppState
|
||
|
|
||
|
public var body: some View {
|
||
|
ZStack {
|
||
|
Color.Main.backgroundLight
|
||
|
Button {
|
||
|
// state.flow = .welcome
|
||
|
} label: {
|
||
|
VStack {
|
||
|
Text("Not yet implemented")
|
||
|
Text(L10n.Global.back)
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
.ignoresSafeArea()
|
||
|
}
|
||
|
}
|