conversations-classic-ios/ConversationsClassic/View/Screens/RegistrationScreen.swift
2024-07-04 10:21:12 +02:00

21 lines
469 B
Swift

import SwiftUI
struct RegistrationScreen: View {
// @EnvironmentObject var state: AppState
public var body: some View {
ZStack {
Color.Material.Background.light
Button {
// state.flow = .welcome
} label: {
VStack {
Text("Not yet implemented")
Text(L10n.Global.back)
}
}
}
.ignoresSafeArea()
}
}