softcleandev
softcleandev
Here my expanable text: ``` ExpandableText(text: "Live long and prosper!") ``` Shouldn't the expand/collapse buttons be hidden for a single-line string? In line 139 https://github.com/NuPlay/ExpandableText/blob/d140b404c6683bb169bb01ef4eeecdb6d9be8fb8/Sources/ExpandableText/ExpandableText.swift#L139 I added a print call:...
I've tried to use fonts in iOS and used an Font-Extension: ``` extension Font { init(resource: KeyPath, withSize: Double = 14.0) { self.init(MR.fonts()[keyPath: resource].uiFont(withSize: withSize)) } } ``` but then...