mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2026-04-02 18:06:10 +00:00
* ios: wallpapers (#4304) * ios: wallpapers * theme selection * applied theme colors and preset wallpaper * more places with background * one more * accent color * defaults * rename * background * no change to cell color * unneeded * changes * no global tint * defaults * removed unneeded class * for merging * ios: wallpapers types (#4325) * types and api * divided types per target * creating directory for wallpapers * creating wallpaper dir at launch * ios: wallpapers appearance (#4335) * appearance * changes * refactor * scale * lambda to function --------- Co-authored-by: Evgeny Poberezkin <2769109+epoberezkin@users.noreply.github.com> * ios: wallpapers user/chat overrides (#4345) * ios: wallpapers user/chat overrides * chat overrides * color picker updates colors correctly * fix state update * labels * background for light theme * small optimization * removed commented code * ios: enhancements to wallpapers (#4361) * ios: enhancements to wallpapers * colors for background * ios: wallpapers import/export (#4362) * ios: wallpapers import/export * comment * ios: wallpapers theme updates (#4365) * ios: wallpapers theme updates * group member background * colors * profile picture colors * unneeded * optimizations, images, state fixes * fixes * no editing of title color * rename Menus and alerts, refactor * tint applying fix * fixes * migration of accent and themes * fix updating system theme * migration changes * limiting color range * ios: wallpapers rename enum (#4384) * ios: wallpapers rename enum2 (#4385) * ios: wallpapers rename enum2 * change * colors were commented * fix build and look --------- Co-authored-by: Stanislav Dmitrenko <7953703+avently@users.noreply.github.com>
89 lines
3.5 KiB
Swift
89 lines
3.5 KiB
Swift
//
|
|
// CallSettings.swift
|
|
// SimpleX (iOS)
|
|
//
|
|
// Created by Evgeny on 27/05/2022.
|
|
// Copyright © 2022 SimpleX Chat. All rights reserved.
|
|
//
|
|
|
|
import SwiftUI
|
|
import SimpleXChat
|
|
|
|
struct CallSettings: View {
|
|
@EnvironmentObject var theme: AppTheme
|
|
@AppStorage(DEFAULT_WEBRTC_POLICY_RELAY) private var webrtcPolicyRelay = true
|
|
@AppStorage(GROUP_DEFAULT_CALL_KIT_ENABLED, store: groupDefaults) private var callKitEnabled = true
|
|
@AppStorage(DEFAULT_CALL_KIT_CALLS_IN_RECENTS) private var callKitCallsInRecents = false
|
|
private let allowChangingCallsHistory = false
|
|
|
|
var body: some View {
|
|
VStack {
|
|
List {
|
|
Section {
|
|
NavigationLink {
|
|
RTCServers()
|
|
.navigationTitle("Your ICE servers")
|
|
.modifier(ThemedBackground(grouped: true))
|
|
} label: {
|
|
Text("WebRTC ICE servers")
|
|
}
|
|
Toggle("Always use relay", isOn: $webrtcPolicyRelay)
|
|
} header: {
|
|
Text("Settings")
|
|
.foregroundColor(theme.colors.secondary)
|
|
} footer: {
|
|
if webrtcPolicyRelay {
|
|
Text("Relay server protects your IP address, but it can observe the duration of the call.")
|
|
.foregroundColor(theme.colors.secondary)
|
|
} else {
|
|
Text("Relay server is only used if necessary. Another party can observe your IP address.")
|
|
.foregroundColor(theme.colors.secondary)
|
|
}
|
|
}
|
|
|
|
if !CallController.isInChina {
|
|
Section {
|
|
Toggle("Use iOS call interface", isOn: $callKitEnabled)
|
|
Toggle("Show calls in phone history", isOn: $callKitCallsInRecents)
|
|
.disabled(!callKitEnabled)
|
|
.onChange(of: callKitCallsInRecents) { value in
|
|
CallController.shared.showInRecents(value)
|
|
}
|
|
} header: {
|
|
Text("Interface")
|
|
.foregroundColor(theme.colors.secondary)
|
|
} footer: {
|
|
if callKitEnabled {
|
|
Text("You can accept calls from lock screen, without device and app authentication.")
|
|
} else {
|
|
Text("Authentication is required before the call is connected, but you may miss calls.")
|
|
}
|
|
}
|
|
}
|
|
|
|
Section(header: Text("Limitations").foregroundColor(theme.colors.secondary)) {
|
|
VStack(alignment: .leading, spacing: 8) {
|
|
textListItem("1.", "Do NOT use SimpleX for emergency calls.")
|
|
textListItem("2.", "Unless you use iOS call interface, enable Do Not Disturb mode to avoid interruptions.")
|
|
}
|
|
.font(.callout)
|
|
.padding(.vertical, 8)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
func textListItem(_ n: String, _ text: LocalizedStringKey) -> some View {
|
|
ZStack(alignment: .topLeading) {
|
|
Text(n)
|
|
Text(text).frame(maxWidth: .infinity, alignment: .leading).padding(.leading, 20)
|
|
}
|
|
}
|
|
|
|
struct CallSettings_Previews: PreviewProvider {
|
|
static var previews: some View {
|
|
CallSettings()
|
|
}
|
|
}
|