30 lines
919 B
Swift
30 lines
919 B
Swift
//
|
|
// UserAddressLearnMore.swift
|
|
// SimpleX (iOS)
|
|
//
|
|
// Created by spaced4ndy on 27.04.2023.
|
|
// Copyright © 2023 SimpleX Chat. All rights reserved.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
struct UserAddressLearnMore: View {
|
|
var body: some View {
|
|
List {
|
|
VStack(alignment: .leading, spacing: 18) {
|
|
Text("You can share your address as a link or QR code - anybody can connect to you.")
|
|
Text("You won't lose your contacts if you later delete your address.")
|
|
Text("When people request to connect, you can accept or reject it.")
|
|
Text("Read more in [User Guide](https://simplex.chat/docs/guide/app-settings.html#your-simplex-contact-address).")
|
|
}
|
|
.listRowBackground(Color.clear)
|
|
}
|
|
}
|
|
}
|
|
|
|
struct UserAddressLearnMore_Previews: PreviewProvider {
|
|
static var previews: some View {
|
|
UserAddressLearnMore()
|
|
}
|
|
}
|