another.im-ios/Monal/another.im/Views/Enter/RegistrationScreen.swift

21 lines
459 B
Swift
Raw Normal View History

2024-11-19 16:07:47 +00:00
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()
}
}