figma-export
figma-export copied to clipboard
SwiftUI Fonts have been renamed to remove 1 for first value
.title1 should be renamed to .title .caption1 should be renamed to .caption
public enum DynamicTypeStyle: String, RawRepresentable {
case largeTitle = "Large Title"
case title1 = "Title 1"
case title2 = "Title 2"
case title3 = "Title 3"
case headline = "Headline"
case body = "Body"
case callout = "Callout"
case subheadline = "Subhead"
case footnote = "Footnote"
case caption1 = "Caption 1"
case caption2 = "Caption 2"
...