gitextract_90kd__s2/ ├── .github/ │ └── FUNDING.yml ├── .gitignore ├── .swiftlint.yml ├── LICENSE ├── LTMorphingLabel/ │ ├── Info.plist │ ├── LTCharacterDiffResult.swift │ ├── LTCharacterLimbo.swift │ ├── LTEasing.swift │ ├── LTEmitterView.swift │ ├── LTMorphingEffect.swift │ ├── LTMorphingLabel+Anvil.swift │ ├── LTMorphingLabel+Burn.swift │ ├── LTMorphingLabel+Evaporate.swift │ ├── LTMorphingLabel+Fall.swift │ ├── LTMorphingLabel+Pixelate.swift │ ├── LTMorphingLabel+Sparkle.swift │ ├── LTMorphingLabel.h │ ├── LTMorphingLabel.swift │ ├── LTStringDiffResult.swift │ ├── SwiftUI/ │ │ └── MorphingText.swift │ └── tvOS-Info.plist ├── LTMorphingLabel.podspec ├── LTMorphingLabelDemo/ │ ├── AppDelegate.swift │ ├── Images.xcassets/ │ │ ├── AppIcon.appiconset/ │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ ├── LTDemoViewController.swift │ ├── LTMorphingLabelDemo.storyboard │ └── Launch Screen.storyboard ├── LTMorphingLabelDemo.xcodeproj/ │ ├── project.pbxproj │ ├── project.xcworkspace/ │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata/ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata/ │ └── xcschemes/ │ ├── LTMorphingLabelDemo.xcscheme │ └── MorphingLabel.xcscheme ├── LTMorphingLabelTests/ │ ├── Info.plist │ └── LTMorphingLabelTests.swift ├── LTMorphingLabelUITests/ │ ├── Info.plist │ └── LTMorphingLabelUITests.swift ├── Package.swift ├── README.md └── build_xcframework.sh