@State private var text: String = ""
var body: some View {
PasteButton(payloadType: String.self) { strings in
text = strings[0]
}.labelStyle(.titleOnly)
}
Youtuber @CodeWithWilliamJiamin's Website
@State private var text: String = ""
var body: some View {
PasteButton(payloadType: String.self) { strings in
text = strings[0]
}.labelStyle(.titleOnly)
}