Skip to content

Instantly share code, notes, and snippets.

View priyankt's full-sized avatar
👷‍♂️
Building...

Priyank Tiwari priyankt

👷‍♂️
Building...
View GitHub Profile
@priyankt
priyankt / AttributedText.swift
Last active January 31, 2024 12:36
Attributed text generation helper classes
import Foundation
import UIKit
class AttributedTextComponent {
let text: String
let font: UIFont
let color: UIColor
init(text: String, font: UIFont, color: UIColor) {
self.text = text