Integrated token request using an application server Downgraded features for adapting others tutorials ios: Updated assets and remove unncessary code Updated schemas and app name Added configure urls view and refactored code ios: Refactored code removed broadcastExt renamed project to OpenViduIOS refactored code Updated Readme removed connection time element Added participants name and moved leave room button to topbar Refactored code Update README.md Renamed and improve project structure
115 lines
2.9 KiB
Swift
115 lines
2.9 KiB
Swift
/*
|
|
* Copyright 2024 LiveKit
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
import SwiftUI
|
|
|
|
extension Color {
|
|
static let ovYellow = Color("OVYellow")
|
|
static let ovBlue = Color("OVBlue")
|
|
static let ovGray = Color("OVGray")
|
|
static let ovGray2 = Color("OVGray2")
|
|
}
|
|
|
|
struct LazyView<Content: View>: View {
|
|
let build: () -> Content
|
|
init(_ build: @autoclosure @escaping () -> Content) {
|
|
self.build = build
|
|
}
|
|
|
|
var body: Content {
|
|
build()
|
|
}
|
|
}
|
|
|
|
// Default button style for this example
|
|
struct LKButton: View {
|
|
let title: String
|
|
let action: () -> Void
|
|
|
|
var body: some View {
|
|
Button(action: action,
|
|
label: {
|
|
Text(title.uppercased())
|
|
.fontWeight(.bold)
|
|
.padding(.horizontal, 12)
|
|
.padding(.vertical, 10)
|
|
})
|
|
.background(Color.ovBlue)
|
|
.cornerRadius(8)
|
|
}
|
|
}
|
|
|
|
#if os(iOS)
|
|
extension LKTextField.`Type` {
|
|
func toiOSType() -> UIKeyboardType {
|
|
switch self {
|
|
case .URL: return .URL
|
|
case .ascii: return .asciiCapable
|
|
default: return .default
|
|
}
|
|
}
|
|
}
|
|
#endif
|
|
|
|
#if os(macOS)
|
|
// Avoid showing focus border around textfield for macOS
|
|
extension NSTextField {
|
|
override open var focusRingType: NSFocusRingType {
|
|
get { .none }
|
|
set {}
|
|
}
|
|
}
|
|
#endif
|
|
|
|
struct LKTextField: View {
|
|
enum `Type` {
|
|
case `default`
|
|
case URL
|
|
case ascii
|
|
case secret
|
|
}
|
|
|
|
let title: String
|
|
@Binding var text: String
|
|
var type: Type = .default
|
|
|
|
var body: some View {
|
|
VStack(alignment: .leading, spacing: 10.0) {
|
|
Text(title)
|
|
.fontWeight(.bold)
|
|
|
|
Group {
|
|
if type == .secret {
|
|
SecureField("", text: $text)
|
|
} else {
|
|
TextField("", text: $text)
|
|
}
|
|
}
|
|
.textFieldStyle(.plain)
|
|
.disableAutocorrection(true)
|
|
.padding()
|
|
.overlay(RoundedRectangle(cornerRadius: 10.0)
|
|
.strokeBorder(Color.white.opacity(0.3),
|
|
style: StrokeStyle(lineWidth: 1.0)))
|
|
#if os(iOS)
|
|
.autocapitalization(.none)
|
|
.keyboardType(type.toiOSType())
|
|
#endif
|
|
|
|
}.frame(maxWidth: .infinity)
|
|
}
|
|
}
|