mirror of https://github.com/oxen-io/session-ios
refactor and improvements on landing view
parent
e414f17a4d
commit
6cd8326904
@ -0,0 +1,15 @@
|
||||
// Copyright © 2023 Rangeproof Pty Ltd. All rights reserved.
|
||||
|
||||
import SwiftUI
|
||||
|
||||
struct DisplayNameView: View {
|
||||
var body: some View {
|
||||
Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/)
|
||||
}
|
||||
}
|
||||
|
||||
struct DisplayNameView_Previews: PreviewProvider {
|
||||
static var previews: some View {
|
||||
DisplayNameView()
|
||||
}
|
||||
}
|
@ -0,0 +1,15 @@
|
||||
// Copyright © 2023 Rangeproof Pty Ltd. All rights reserved.
|
||||
|
||||
import SwiftUI
|
||||
|
||||
struct SessionTextField: View {
|
||||
var body: some View {
|
||||
Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/)
|
||||
}
|
||||
}
|
||||
|
||||
struct SessionTextField_Previews: PreviewProvider {
|
||||
static var previews: some View {
|
||||
SessionTextField()
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue