RedMadRobot / figma-export

Command line utility to export colors, typography, icons and images from Figma to Xcode / Android Studio project
MIT License
718 stars 114 forks source link

SwiftUI Fonts have been renamed to remove 1 for first value #241

Open pontusUmain opened 1 month ago

pontusUmain commented 1 month ago

.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"

   ...