fmodf
b3b3b3aef7
Reviewed-on: narayana/conversations-classic-ios#1 Co-authored-by: fmodf <fmodf.ios@gmail.com> Co-committed-by: fmodf <fmodf.ios@gmail.com>
21 lines
459 B
Swift
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()
|
|
}
|
|
}
|