├── .swiftpm └── xcode │ ├── package.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ └── mcrich.xcuserdatad │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ └── mcrich.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── LICENSE.md ├── Media ├── engine.gif ├── hero.gif ├── loop.gif ├── playback.gif ├── progress.gif └── speed.gif ├── Package.swift ├── README.md ├── Sources └── LottieUI │ ├── AsyncLottieView │ ├── AsyncLottiePhase.swift │ └── AsyncLottieView.swift │ ├── LottieConfiguration.swift │ ├── LottieContentSource.swift │ ├── LottieView │ ├── LottieView+iOS.swift │ ├── LottieView+macOS.swift │ └── LottieView.swift │ ├── iOS │ ├── AnimationProgressObserver.swift │ └── WrappedAnimationView+iOS.swift │ └── macOS │ ├── AnimationProgressObserver+macOS.swift │ └── WrappedAnimationNSView.swift └── Tests └── LottieUITests └── LottieUITests.swift /.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfmart/LottieUI/HEAD/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfmart/LottieUI/HEAD/.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/xcuserdata/mcrich.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfmart/LottieUI/HEAD/.swiftpm/xcode/package.xcworkspace/xcuserdata/mcrich.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /.swiftpm/xcode/xcuserdata/mcrich.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfmart/LottieUI/HEAD/.swiftpm/xcode/xcuserdata/mcrich.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfmart/LottieUI/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Media/engine.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfmart/LottieUI/HEAD/Media/engine.gif -------------------------------------------------------------------------------- /Media/hero.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfmart/LottieUI/HEAD/Media/hero.gif -------------------------------------------------------------------------------- /Media/loop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfmart/LottieUI/HEAD/Media/loop.gif -------------------------------------------------------------------------------- /Media/playback.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfmart/LottieUI/HEAD/Media/playback.gif -------------------------------------------------------------------------------- /Media/progress.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfmart/LottieUI/HEAD/Media/progress.gif -------------------------------------------------------------------------------- /Media/speed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfmart/LottieUI/HEAD/Media/speed.gif -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfmart/LottieUI/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfmart/LottieUI/HEAD/README.md -------------------------------------------------------------------------------- /Sources/LottieUI/AsyncLottieView/AsyncLottiePhase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfmart/LottieUI/HEAD/Sources/LottieUI/AsyncLottieView/AsyncLottiePhase.swift -------------------------------------------------------------------------------- /Sources/LottieUI/AsyncLottieView/AsyncLottieView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfmart/LottieUI/HEAD/Sources/LottieUI/AsyncLottieView/AsyncLottieView.swift -------------------------------------------------------------------------------- /Sources/LottieUI/LottieConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfmart/LottieUI/HEAD/Sources/LottieUI/LottieConfiguration.swift -------------------------------------------------------------------------------- /Sources/LottieUI/LottieContentSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfmart/LottieUI/HEAD/Sources/LottieUI/LottieContentSource.swift -------------------------------------------------------------------------------- /Sources/LottieUI/LottieView/LottieView+iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfmart/LottieUI/HEAD/Sources/LottieUI/LottieView/LottieView+iOS.swift -------------------------------------------------------------------------------- /Sources/LottieUI/LottieView/LottieView+macOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfmart/LottieUI/HEAD/Sources/LottieUI/LottieView/LottieView+macOS.swift -------------------------------------------------------------------------------- /Sources/LottieUI/LottieView/LottieView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfmart/LottieUI/HEAD/Sources/LottieUI/LottieView/LottieView.swift -------------------------------------------------------------------------------- /Sources/LottieUI/iOS/AnimationProgressObserver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfmart/LottieUI/HEAD/Sources/LottieUI/iOS/AnimationProgressObserver.swift -------------------------------------------------------------------------------- /Sources/LottieUI/iOS/WrappedAnimationView+iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfmart/LottieUI/HEAD/Sources/LottieUI/iOS/WrappedAnimationView+iOS.swift -------------------------------------------------------------------------------- /Sources/LottieUI/macOS/AnimationProgressObserver+macOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfmart/LottieUI/HEAD/Sources/LottieUI/macOS/AnimationProgressObserver+macOS.swift -------------------------------------------------------------------------------- /Sources/LottieUI/macOS/WrappedAnimationNSView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfmart/LottieUI/HEAD/Sources/LottieUI/macOS/WrappedAnimationNSView.swift -------------------------------------------------------------------------------- /Tests/LottieUITests/LottieUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfmart/LottieUI/HEAD/Tests/LottieUITests/LottieUITests.swift --------------------------------------------------------------------------------