Skip to content

Instantly share code, notes, and snippets.

View B0Y3R's full-sized avatar

James Boyer B0Y3R

  • wouldn't you like to know
View GitHub Profile
@B0Y3R
B0Y3R / HighlightedText.Swift
Last active December 19, 2024 16:55
Inline clickable highlightable text in swift
import Foundation
import SwiftUI
struct Highlight {
let text: String
let data: String
let onClick: (String) -> Void
}