├── .gitignore ├── .swiftpm └── xcode │ └── package.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── LICENSE.txt ├── Package.swift ├── README.md ├── Sources └── TCAnimatedText │ ├── AnimatedText.swift │ └── LibraryContent.swift ├── Tests ├── LinuxMain.swift └── TCAnimatedTextTests │ ├── TCAnimatedTextTests.swift │ └── XCTestManifests.swift └── images └── AnimatedText_Cover.gif /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /.build 3 | /Packages 4 | /*.xcodeproj 5 | xcuserdata/ 6 | -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboullianne/TCAnimatedText/HEAD/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboullianne/TCAnimatedText/HEAD/.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboullianne/TCAnimatedText/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboullianne/TCAnimatedText/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboullianne/TCAnimatedText/HEAD/README.md -------------------------------------------------------------------------------- /Sources/TCAnimatedText/AnimatedText.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboullianne/TCAnimatedText/HEAD/Sources/TCAnimatedText/AnimatedText.swift -------------------------------------------------------------------------------- /Sources/TCAnimatedText/LibraryContent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboullianne/TCAnimatedText/HEAD/Sources/TCAnimatedText/LibraryContent.swift -------------------------------------------------------------------------------- /Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboullianne/TCAnimatedText/HEAD/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /Tests/TCAnimatedTextTests/TCAnimatedTextTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboullianne/TCAnimatedText/HEAD/Tests/TCAnimatedTextTests/TCAnimatedTextTests.swift -------------------------------------------------------------------------------- /Tests/TCAnimatedTextTests/XCTestManifests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboullianne/TCAnimatedText/HEAD/Tests/TCAnimatedTextTests/XCTestManifests.swift -------------------------------------------------------------------------------- /images/AnimatedText_Cover.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboullianne/TCAnimatedText/HEAD/images/AnimatedText_Cover.gif --------------------------------------------------------------------------------