mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2025-06-28 20:29:53 +00:00
* wip
* refactor, fix bindings
* wip
* wip
* fixes
* wip
* information map, logos
* global conditions hack
* restructure
* restructure
* texts
* text
* restructure
* wip
* restructure
* rename
* wip
* conditions for all
* comment
* onboarding wip
* onboarding wip
* fix paddings
* fix paddings
* wip
* fix padding
* onboarding wip
* nav link instead of sheet
* pretty button
* large titles
* notifications mode button style
* reenable demo operator
* Revert "reenable demo operator"
This reverts commit 42111eb333
.
* padding
* reenable demo operator
* refactor (removes additional model api)
* style
* bold
* bold
* light/dark
* fix button
* comment
* wip
* remove preset
* new types
* api types
* apis
* smp and xftp servers in single view
* test operator servers, refactor
* save in main view
* better progress
* better in progress
* remove shadow
* update
* apis
* conditions view wip
* load text
* remove custom servers button from onboarding, open already conditions in nav link
* allow to continue with simplex on onboarding
* footer
* existing users notice
* fix to not show nothing on no action
* disable notice
* review later
* disable notice
* wip
* wip
* wip
* wip
* optional tag
* fix
* fix tags
* fix
* wip
* remove coding keys
* fix onboarding
* rename
* rework model wip
* wip
* wip
* wip
* fix
* wip
* wip
* delete
* simplify
* wip
* fix delete
* ios: server operators ui wip
* refactor
* edited
* save servers on dismiss/back
* ios: add address card and remove address from onboarding (#5181)
* ios: add address card and remove address from onboarding
* allow for address creation in info when open via card
* conditions interactions wip
* conditions interactions wip
* fix
* wip
* wip
* wip
* wip
* rename
* wip
* fix
* remove operator binding
* fix set enabled
* rename
* cleanup
* text
* fix info view dark mode
* update lib
* ios: operators & servers validation
* fix
* ios: align onboarding style
* ios: align onboarding style
* ios: operators info (#5207)
* ios: operators info
* update
* update texts
* texts
---------
Co-authored-by: spaced4ndy <8711996+spaced4ndy@users.noreply.github.com>
---------
Co-authored-by: Diogo <diogofncunha@gmail.com>
Co-authored-by: Evgeny Poberezkin <evgeny@poberezkin.com>
70 lines
2.4 KiB
Swift
70 lines
2.4 KiB
Swift
//
|
||
// HowItWorks.swift
|
||
// SimpleX (iOS)
|
||
//
|
||
// Created by Evgeny on 08/05/2022.
|
||
// Copyright © 2022 SimpleX Chat. All rights reserved.
|
||
//
|
||
|
||
import SwiftUI
|
||
|
||
struct HowItWorks: View {
|
||
@Environment(\.dismiss) var dismiss: DismissAction
|
||
@EnvironmentObject var m: ChatModel
|
||
var onboarding: Bool
|
||
@Binding var createProfileNavLinkActive: Bool
|
||
|
||
var body: some View {
|
||
VStack(alignment: .leading) {
|
||
Text("How SimpleX works")
|
||
.font(.largeTitle)
|
||
.padding(.vertical)
|
||
ScrollView {
|
||
VStack(alignment: .leading) {
|
||
Group {
|
||
Text("Many people asked: *if SimpleX has no user identifiers, how can it deliver messages?*")
|
||
Text("To protect privacy, instead of user IDs used by all other platforms, SimpleX has identifiers for message queues, separate for each of your contacts.")
|
||
Text("You control through which server(s) **to receive** the messages, your contacts – the servers you use to message them.")
|
||
Text("Only client devices store user profiles, contacts, groups, and messages sent with **2-layer end-to-end encryption**.")
|
||
if onboarding {
|
||
Text("Read more in our GitHub repository.")
|
||
} else {
|
||
Text("Read more in our [GitHub repository](https://github.com/simplex-chat/simplex-chat#readme).")
|
||
}
|
||
}
|
||
.padding(.bottom)
|
||
}
|
||
}
|
||
|
||
Spacer()
|
||
|
||
if onboarding {
|
||
createFirstProfileButton()
|
||
.padding(.bottom)
|
||
}
|
||
}
|
||
.lineLimit(10)
|
||
.padding()
|
||
.frame(maxHeight: .infinity, alignment: .top)
|
||
.modifier(ThemedBackground())
|
||
}
|
||
|
||
private func createFirstProfileButton() -> some View {
|
||
Button {
|
||
dismiss()
|
||
createProfileNavLinkActive = true
|
||
} label: {
|
||
Text("Create your profile")
|
||
}
|
||
.buttonStyle(OnboardingButtonStyle(isDisabled: false))
|
||
}
|
||
}
|
||
|
||
struct HowItWorks_Previews: PreviewProvider {
|
||
static var previews: some View {
|
||
HowItWorks(
|
||
onboarding: true,
|
||
createProfileNavLinkActive: Binding.constant(false)
|
||
)
|
||
}
|
||
}
|