conversations-classic-ios/ConversationsClassic/View/Entering/RegistrationScreen.swift
2024-08-11 13:09:29 +02:00

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()
}
}