49 lines
1.3 KiB
Swift
49 lines
1.3 KiB
Swift
//
|
|
// AddRelayView.swift
|
|
// damus
|
|
//
|
|
// Created by William Casarin on 2022-06-09.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
struct AddRelayView: View {
|
|
@Binding var relay: String
|
|
|
|
var body: some View {
|
|
ZStack(alignment: .leading) {
|
|
HStack{
|
|
TextField(NSLocalizedString("wss://some.relay.com", comment: "Placeholder example for relay server address."), text: $relay)
|
|
.padding(2)
|
|
.padding(.leading, 25)
|
|
.autocorrectionDisabled(true)
|
|
.textInputAutocapitalization(.never)
|
|
|
|
Label("", image: "close-circle")
|
|
.foregroundColor(.accentColor)
|
|
.padding(.trailing, -25.0)
|
|
.opacity((relay == "") ? 0.0 : 1.0)
|
|
.onTapGesture {
|
|
self.relay = ""
|
|
}
|
|
}
|
|
|
|
Label("", image: "copy2")
|
|
.padding(.leading, -10)
|
|
.onTapGesture {
|
|
if let pastedrelay = UIPasteboard.general.string {
|
|
self.relay = pastedrelay
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
struct AddRelayView_Previews: PreviewProvider {
|
|
@State static var relay: String = ""
|
|
|
|
static var previews: some View {
|
|
AddRelayView(relay: $relay)
|
|
}
|
|
}
|