conversations-classic-ios/ConversationsClassic/View/Entering/RegistrationScreen.swift
2024-08-11 17:04:42 +02:00

21 lines
459 B
Swift

import SwiftUI
struct RegistrationScreen: View {
@Environment(\.router) var router
public var body: some View {
ZStack {
Color.Material.Background.light
Button {
router.dismissScreen()
} label: {
VStack {
Text("Not yet implemented")
Text(L10n.Global.back)
}
}
}
.ignoresSafeArea()
}
}