├── .editorconfig ├── .github └── workflows │ ├── build.yml │ └── lint.yml ├── .gitignore ├── .spi.yml ├── .swiftlint.yml ├── CHANGELOG.md ├── Demo ├── Demo.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ ├── Demo (iOS).xcscheme │ │ └── Demo (tvOS).xcscheme ├── iOS │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ ├── DemoViewController.swift │ ├── Info.plist │ └── SceneDelegate.swift └── tvOS │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── App Icon & Top Shelf Image.brandassets │ │ ├── App Icon - App Store.imagestack │ │ │ ├── Back.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── Front.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ └── Middle.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ ├── App Icon.imagestack │ │ │ ├── Back.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── Front.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ └── Middle.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── Top Shelf Image Wide.imageset │ │ │ └── Contents.json │ │ └── Top Shelf Image.imageset │ │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ └── LaunchScreen.storyboard │ └── DemoViewController.swift ├── LICENSE ├── Makefile ├── Package.swift ├── README.md ├── RotatingLabel.podspec ├── RotatingLabel.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ ├── RotatingLabel.xcscheme │ └── RotatingLabelDemo.xcscheme ├── RotatingLabel.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ ├── IDEWorkspaceChecks.plist │ └── swiftpm │ └── Package.resolved ├── RotatingLabel ├── DiffingFunction.swift └── RotatingLabel.swift ├── RotatingLabelTests ├── DiffingFunctionTests.swift ├── RotatingLabelSnapshotTests.swift ├── RotatingLabelTests.swift └── __Snapshots__ │ └── RotatingLabelSnapshotTests │ ├── test_darkMode.1.png │ ├── test_default.1.png │ ├── test_largeFont.1.png │ └── test_textColor.1.png └── assets └── rotating_label.gif /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymondjavaxx/RotatingLabel/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymondjavaxx/RotatingLabel/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymondjavaxx/RotatingLabel/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # OS 2 | .DS_Store 3 | 4 | # Xcode 5 | xcuserdata/ 6 | 7 | # CI 8 | .build 9 | -------------------------------------------------------------------------------- /.spi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymondjavaxx/RotatingLabel/HEAD/.spi.yml -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymondjavaxx/RotatingLabel/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymondjavaxx/RotatingLabel/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Demo/Demo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymondjavaxx/RotatingLabel/HEAD/Demo/Demo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Demo/Demo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymondjavaxx/RotatingLabel/HEAD/Demo/Demo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Demo/Demo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymondjavaxx/RotatingLabel/HEAD/Demo/Demo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Demo/Demo.xcodeproj/xcshareddata/xcschemes/Demo (iOS).xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymondjavaxx/RotatingLabel/HEAD/Demo/Demo.xcodeproj/xcshareddata/xcschemes/Demo (iOS).xcscheme -------------------------------------------------------------------------------- /Demo/Demo.xcodeproj/xcshareddata/xcschemes/Demo (tvOS).xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymondjavaxx/RotatingLabel/HEAD/Demo/Demo.xcodeproj/xcshareddata/xcschemes/Demo (tvOS).xcscheme -------------------------------------------------------------------------------- /Demo/iOS/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymondjavaxx/RotatingLabel/HEAD/Demo/iOS/AppDelegate.swift -------------------------------------------------------------------------------- /Demo/iOS/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymondjavaxx/RotatingLabel/HEAD/Demo/iOS/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Demo/iOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymondjavaxx/RotatingLabel/HEAD/Demo/iOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Demo/iOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymondjavaxx/RotatingLabel/HEAD/Demo/iOS/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Demo/iOS/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymondjavaxx/RotatingLabel/HEAD/Demo/iOS/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Demo/iOS/DemoViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymondjavaxx/RotatingLabel/HEAD/Demo/iOS/DemoViewController.swift -------------------------------------------------------------------------------- /Demo/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymondjavaxx/RotatingLabel/HEAD/Demo/iOS/Info.plist -------------------------------------------------------------------------------- /Demo/iOS/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymondjavaxx/RotatingLabel/HEAD/Demo/iOS/SceneDelegate.swift -------------------------------------------------------------------------------- /Demo/tvOS/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymondjavaxx/RotatingLabel/HEAD/Demo/tvOS/AppDelegate.swift -------------------------------------------------------------------------------- /Demo/tvOS/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymondjavaxx/RotatingLabel/HEAD/Demo/tvOS/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Demo/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Back.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymondjavaxx/RotatingLabel/HEAD/Demo/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Back.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Back.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymondjavaxx/RotatingLabel/HEAD/Demo/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Back.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Demo/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymondjavaxx/RotatingLabel/HEAD/Demo/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Contents.json -------------------------------------------------------------------------------- /Demo/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Front.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymondjavaxx/RotatingLabel/HEAD/Demo/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Front.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Front.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymondjavaxx/RotatingLabel/HEAD/Demo/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Front.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Demo/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymondjavaxx/RotatingLabel/HEAD/Demo/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Middle.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymondjavaxx/RotatingLabel/HEAD/Demo/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Middle.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Demo/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Back.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymondjavaxx/RotatingLabel/HEAD/Demo/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Back.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Back.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymondjavaxx/RotatingLabel/HEAD/Demo/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Back.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Demo/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymondjavaxx/RotatingLabel/HEAD/Demo/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Contents.json -------------------------------------------------------------------------------- /Demo/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Front.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymondjavaxx/RotatingLabel/HEAD/Demo/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Front.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Front.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymondjavaxx/RotatingLabel/HEAD/Demo/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Front.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Demo/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymondjavaxx/RotatingLabel/HEAD/Demo/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Middle.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymondjavaxx/RotatingLabel/HEAD/Demo/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Middle.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Demo/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymondjavaxx/RotatingLabel/HEAD/Demo/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Contents.json -------------------------------------------------------------------------------- /Demo/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image Wide.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymondjavaxx/RotatingLabel/HEAD/Demo/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image Wide.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymondjavaxx/RotatingLabel/HEAD/Demo/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/tvOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymondjavaxx/RotatingLabel/HEAD/Demo/tvOS/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Demo/tvOS/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymondjavaxx/RotatingLabel/HEAD/Demo/tvOS/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Demo/tvOS/DemoViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymondjavaxx/RotatingLabel/HEAD/Demo/tvOS/DemoViewController.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymondjavaxx/RotatingLabel/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymondjavaxx/RotatingLabel/HEAD/Makefile -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymondjavaxx/RotatingLabel/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymondjavaxx/RotatingLabel/HEAD/README.md -------------------------------------------------------------------------------- /RotatingLabel.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymondjavaxx/RotatingLabel/HEAD/RotatingLabel.podspec -------------------------------------------------------------------------------- /RotatingLabel.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymondjavaxx/RotatingLabel/HEAD/RotatingLabel.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /RotatingLabel.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymondjavaxx/RotatingLabel/HEAD/RotatingLabel.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /RotatingLabel.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymondjavaxx/RotatingLabel/HEAD/RotatingLabel.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /RotatingLabel.xcodeproj/xcshareddata/xcschemes/RotatingLabel.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymondjavaxx/RotatingLabel/HEAD/RotatingLabel.xcodeproj/xcshareddata/xcschemes/RotatingLabel.xcscheme -------------------------------------------------------------------------------- /RotatingLabel.xcodeproj/xcshareddata/xcschemes/RotatingLabelDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymondjavaxx/RotatingLabel/HEAD/RotatingLabel.xcodeproj/xcshareddata/xcschemes/RotatingLabelDemo.xcscheme -------------------------------------------------------------------------------- /RotatingLabel.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymondjavaxx/RotatingLabel/HEAD/RotatingLabel.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /RotatingLabel.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymondjavaxx/RotatingLabel/HEAD/RotatingLabel.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /RotatingLabel.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymondjavaxx/RotatingLabel/HEAD/RotatingLabel.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /RotatingLabel/DiffingFunction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymondjavaxx/RotatingLabel/HEAD/RotatingLabel/DiffingFunction.swift -------------------------------------------------------------------------------- /RotatingLabel/RotatingLabel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymondjavaxx/RotatingLabel/HEAD/RotatingLabel/RotatingLabel.swift -------------------------------------------------------------------------------- /RotatingLabelTests/DiffingFunctionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymondjavaxx/RotatingLabel/HEAD/RotatingLabelTests/DiffingFunctionTests.swift -------------------------------------------------------------------------------- /RotatingLabelTests/RotatingLabelSnapshotTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymondjavaxx/RotatingLabel/HEAD/RotatingLabelTests/RotatingLabelSnapshotTests.swift -------------------------------------------------------------------------------- /RotatingLabelTests/RotatingLabelTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymondjavaxx/RotatingLabel/HEAD/RotatingLabelTests/RotatingLabelTests.swift -------------------------------------------------------------------------------- /RotatingLabelTests/__Snapshots__/RotatingLabelSnapshotTests/test_darkMode.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymondjavaxx/RotatingLabel/HEAD/RotatingLabelTests/__Snapshots__/RotatingLabelSnapshotTests/test_darkMode.1.png -------------------------------------------------------------------------------- /RotatingLabelTests/__Snapshots__/RotatingLabelSnapshotTests/test_default.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymondjavaxx/RotatingLabel/HEAD/RotatingLabelTests/__Snapshots__/RotatingLabelSnapshotTests/test_default.1.png -------------------------------------------------------------------------------- /RotatingLabelTests/__Snapshots__/RotatingLabelSnapshotTests/test_largeFont.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymondjavaxx/RotatingLabel/HEAD/RotatingLabelTests/__Snapshots__/RotatingLabelSnapshotTests/test_largeFont.1.png -------------------------------------------------------------------------------- /RotatingLabelTests/__Snapshots__/RotatingLabelSnapshotTests/test_textColor.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymondjavaxx/RotatingLabel/HEAD/RotatingLabelTests/__Snapshots__/RotatingLabelSnapshotTests/test_textColor.1.png -------------------------------------------------------------------------------- /assets/rotating_label.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymondjavaxx/RotatingLabel/HEAD/assets/rotating_label.gif --------------------------------------------------------------------------------