mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2026-04-05 06:45:49 +00:00
* ios: scroll address view on keyboard, translations * fix typo * revert text --------- Co-authored-by: Evgeny Poberezkin <2769109+epoberezkin@users.noreply.github.com>
30 lines
953 B
Swift
30 lines
953 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://github.com/simplex-chat/simplex-chat/blob/stable/docs/guide/app-settings.md#your-simplex-contact-address).")
|
|
}
|
|
.listRowBackground(Color.clear)
|
|
}
|
|
}
|
|
}
|
|
|
|
struct UserAddressLearnMore_Previews: PreviewProvider {
|
|
static var previews: some View {
|
|
UserAddressLearnMore()
|
|
}
|
|
}
|