├── .github ├── ISSUE_TEMPLATE │ ├── config.yml │ ├── non_rendering_bug.yml │ └── rendering_bug.yml └── workflows │ ├── build.yml │ └── publish.yml ├── .gitignore ├── LICENSE ├── README.md ├── compottie-core ├── build.gradle.kts └── src │ ├── androidMain │ ├── kotlin │ │ └── io │ │ │ └── github │ │ │ └── alexzhirkevich │ │ │ └── compottie │ │ │ ├── LottieContext.android.kt │ │ │ ├── LottiePainter.android.kt │ │ │ └── internal │ │ │ └── platform │ │ │ ├── PlatformCanvas.android.kt │ │ │ ├── PlatformImage.android.kt │ │ │ ├── PlatformPath.android.kt │ │ │ ├── PlatformShader.android.kt │ │ │ ├── PlatformText.android.kt │ │ │ └── effects │ │ │ ├── PlatformDropShadowEffect.android.kt │ │ │ └── PlatformLayerEffect.android.kt │ └── resources │ │ └── META-INF │ │ └── io │ │ └── github │ │ └── alexzhirkevich │ │ └── compottie │ │ └── verification.properties │ ├── commonMain │ └── kotlin │ │ └── io │ │ └── github │ │ └── alexzhirkevich │ │ └── compottie │ │ ├── Compottie.kt │ │ ├── CompottieException.kt │ │ ├── ExperimentalCompottieApi.kt │ │ ├── IODispatcher.kt │ │ ├── InternalCompottieApi.kt │ │ ├── LottieAnimState.kt │ │ ├── LottieAnimatable.kt │ │ ├── LottieAnimationFormat.kt │ │ ├── LottieCancellationBehavior.kt │ │ ├── LottieClipSpec.kt │ │ ├── LottieComposition.kt │ │ ├── LottieCompositionCache.kt │ │ ├── LottieCompositionResult.kt │ │ ├── LottieCompositionSpec.kt │ │ ├── LottieContext.kt │ │ ├── LottieLogger.kt │ │ ├── LottiePainter.core.kt │ │ ├── LruMap.kt │ │ ├── MultiOwnerMutex.kt │ │ ├── animateLottieCompositionAsState.kt │ │ ├── assets │ │ ├── ImageRepresentable.kt │ │ ├── LottieAssetsManager.kt │ │ ├── LottieFontManager.kt │ │ ├── LottieFontSpec.kt │ │ └── LottieImageSpec.kt │ │ ├── dynamic │ │ ├── DynamicDraw.kt │ │ ├── DynamicEllipse.kt │ │ ├── DynamicFill.kt │ │ ├── DynamicImageLayer.kt │ │ ├── DynamicLayer.kt │ │ ├── DynamicPolystar.kt │ │ ├── DynamicRect.kt │ │ ├── DynamicShape.kt │ │ ├── DynamicShapeLayer.kt │ │ ├── DynamicStroke.kt │ │ ├── DynamicTextLayer.kt │ │ ├── DynamicTransform.kt │ │ ├── LottieDynamicProperties.kt │ │ ├── PathMatching.kt │ │ ├── PropertyProvider.kt │ │ ├── _DynamicCompositionProvider.kt │ │ ├── _DynamicDrawProvider.kt │ │ ├── _DynamicEllipseProvider.kt │ │ ├── _DynamicFillProvider.kt │ │ ├── _DynamicImageLayerProvider.kt │ │ ├── _DynamicLayerProvider.kt │ │ ├── _DynamicPolystarProvider.kt │ │ ├── _DynamicRectProvider.kt │ │ ├── _DynamicShapeLayerProvider.kt │ │ ├── _DynamicShapeProvider.kt │ │ ├── _DynamicStrokeProvider.kt │ │ ├── _DynamicTextLayerProvider.kt │ │ ├── _DynamicTransformProvider.kt │ │ └── _GradientBuilderImpl.kt │ │ └── internal │ │ ├── Animation.kt │ │ ├── AnimationState.kt │ │ ├── LottieJson.kt │ │ ├── Slots.kt │ │ ├── animation │ │ ├── AnimatedColor.kt │ │ ├── AnimatedGradient.kt │ │ ├── AnimatedNumber.kt │ │ ├── AnimatedShape.kt │ │ ├── AnimatedTextDocument.kt │ │ ├── AnimatedTransform.kt │ │ ├── AnimatedVector2.kt │ │ ├── AnimatedVectorN.kt │ │ ├── BaseKeyframeAnimation.kt │ │ ├── BezierInterpolation.kt │ │ ├── BezierKeyframe.kt │ │ ├── ColorKeyframe.kt │ │ ├── ColorKeyframeAnimation.kt │ │ ├── DynamicProperty.kt │ │ ├── ExpressionHolder.kt │ │ ├── ExpressionProperty.kt │ │ ├── Keyframe.kt │ │ ├── PropertyGroup.kt │ │ ├── RawProperty.kt │ │ ├── RepeaterTransform.kt │ │ ├── TextDocumentKeyframe.kt │ │ ├── ValueKeyframe.kt │ │ ├── ValueKeyframeAnimation.kt │ │ ├── VectorKeyframe.kt │ │ ├── VectorKeyframeAnimation.kt │ │ └── expressions │ │ │ ├── ExpressionComposition.kt │ │ │ ├── ExpressionConverter.kt │ │ │ ├── ExpressionEvaluator.kt │ │ │ ├── ExpressionsRuntime.kt │ │ │ ├── Layer.kt │ │ │ ├── Loop.kt │ │ │ ├── Smooth.kt │ │ │ └── Wiggle.kt │ │ ├── assets │ │ ├── CharacterData.kt │ │ ├── CharacterPath.kt │ │ ├── ImageAsset.kt │ │ ├── LottieAsset.kt │ │ ├── LottieFileAsset.kt │ │ ├── LottieFontAsset.kt │ │ └── PrecompositionAsset.kt │ │ ├── content │ │ ├── Content.kt │ │ ├── ContentGroup.kt │ │ ├── ContentGroupImpl.kt │ │ ├── DrawingContent.kt │ │ ├── GreedyContent.kt │ │ └── PathContent.kt │ │ ├── effects │ │ ├── BlurEffect.kt │ │ ├── DropShadowEffect.kt │ │ ├── EffectValue.kt │ │ ├── FillEffect.kt │ │ ├── LayerEffect.kt │ │ ├── LayerEffectsApplier.kt │ │ └── TintEffect.kt │ │ ├── helpers │ │ ├── Bezier.kt │ │ ├── BooleanInt.kt │ │ ├── ColorsWithStops.kt │ │ ├── CompoundTrimPath.kt │ │ ├── FillRule.kt │ │ ├── GradientColors.kt │ │ ├── GradientType.kt │ │ ├── LottieBlendMode.kt │ │ ├── Marker.kt │ │ ├── Mask.kt │ │ ├── MatteMode.kt │ │ ├── StrokeDash.kt │ │ ├── Transform.kt │ │ ├── TrimPathType.kt │ │ └── text │ │ │ ├── TextAlignment.kt │ │ │ ├── TextBased.kt │ │ │ ├── TextCaps.kt │ │ │ ├── TextData.kt │ │ │ ├── TextDocument.kt │ │ │ ├── TextFollowPath.kt │ │ │ ├── TextGrouping.kt │ │ │ ├── TextJustify.kt │ │ │ ├── TextRange.kt │ │ │ ├── TextRangeSelector.kt │ │ │ ├── TextRangeUnits.kt │ │ │ ├── TextShape.kt │ │ │ └── TextStyle.kt │ │ ├── layers │ │ ├── BaseCompositionLayer.kt │ │ ├── BaseLayer.kt │ │ ├── CompositionLayer.kt │ │ ├── ImageLayer.kt │ │ ├── Layer.kt │ │ ├── NullLayer.kt │ │ ├── PrecompositionLayer.kt │ │ ├── ShapeLayer.kt │ │ ├── SolidColorLayer.kt │ │ └── TextLayer.kt │ │ ├── platform │ │ ├── PlatformCanvas.kt │ │ ├── PlatformImage.kt │ │ ├── PlatformPath.kt │ │ ├── PlatformShader.kt │ │ ├── PlatformText.kt │ │ └── effects │ │ │ ├── PlatformDropShadowEffect.kt │ │ │ └── PlatformLayerEffect.kt │ │ ├── shapes │ │ ├── BaseStrokeShape.kt │ │ ├── EllipseShape.kt │ │ ├── FillShape.kt │ │ ├── GradientFillShape.kt │ │ ├── GradientStrokeShape.kt │ │ ├── GroupShape.kt │ │ ├── MergePathsShape.kt │ │ ├── PathShape.kt │ │ ├── PolystarShape.kt │ │ ├── RectShape.kt │ │ ├── RepeaterShape.kt │ │ ├── RoundShape.kt │ │ ├── Shape.kt │ │ ├── SolidStrokeShape.kt │ │ ├── TransformShape.kt │ │ └── TrimPathShape.kt │ │ └── utils │ │ ├── Matrix.kt │ │ ├── MiscUtil.kt │ │ └── MutableRect.kt │ ├── commonTest │ └── kotlin │ │ └── io │ │ └── github │ │ └── alexzhirkevich │ │ └── compottie │ │ └── dynamic │ │ └── PathMatchingTest.kt │ ├── jvmNativeMain │ └── kotlin │ │ └── io │ │ └── github │ │ └── alexzhirkevich │ │ └── compottie │ │ └── IoDispatcher.jvmNative.kt │ ├── skikoMain │ └── kotlin │ │ └── io │ │ └── github │ │ └── alexzhirkevich │ │ └── compottie │ │ ├── LottieContext.skiko.kt │ │ ├── LottiePainter.skiko.kt │ │ └── internal │ │ └── platform │ │ ├── PlatformCanvas.skiko.kt │ │ ├── PlatformImage.skiko.kt │ │ ├── PlatformPath.skiko.kt │ │ ├── PlatformShader.skiko.kt │ │ ├── PlatformText.skiko.kt │ │ └── effects │ │ ├── PlatformDropShadowEffect.skiko.kt │ │ └── PlatformLayerEffect.skiko.kt │ └── webMain │ └── kotlin │ └── io │ └── github │ └── alexzhirkevich │ └── compottie │ └── IoDispatcher.web.kt ├── compottie-dot ├── build.gradle.kts └── src │ ├── commonMain │ └── kotlin │ │ └── io │ │ └── github │ │ └── alexzhirkevich │ │ └── compottie │ │ ├── DotLottieAssetsManager.kt │ │ ├── DotLottieCompositionSpec.kt │ │ ├── DotLottieManifest.kt │ │ ├── FakeFileSystem.kt │ │ ├── FileCompositionSpec.kt │ │ ├── FileSystem.kt │ │ ├── Time.kt │ │ ├── ZipEntry.kt │ │ ├── ZipFileSystem.kt │ │ └── ZipFiles.kt │ ├── javaMain │ └── kotlin │ │ └── io │ │ └── github │ │ └── alexzhirkevich │ │ └── compottie │ │ └── Time.java.kt │ ├── jsMain │ └── kotlin │ │ └── io │ │ └── github │ │ └── alexzhirkevich │ │ └── compottie │ │ ├── DecompressionStream.js.kt │ │ ├── FileSystem.js.kt │ │ ├── Time.js.kt │ │ └── ZipFileSystem.js.kt │ ├── jvmNativeMain │ └── kotlin │ │ └── io │ │ └── github │ │ └── alexzhirkevich │ │ └── compottie │ │ ├── FileSystem.jvmNative.kt │ │ └── ZipFileSystem.jvmNative.kt │ ├── nativeMain │ └── kotlin │ │ └── io │ │ └── github │ │ └── alexzhirkevich │ │ └── compottie │ │ └── Time.native.kt │ ├── wasmJsMain │ └── kotlin │ │ └── io │ │ └── github │ │ └── alexzhirkevich │ │ └── compottie │ │ ├── Conversion.wasmJs.kt │ │ ├── DecompressionStream.wasmJs.kt │ │ ├── Time.wasmJs.kt │ │ └── ZipFileSystem.wasmJs.kt │ └── webMain │ └── kotlin │ └── io │ └── github │ └── alexzhirkevich │ └── compottie │ ├── DecompressionStream.web.kt │ ├── FileSystem.web.kt │ └── ZipFileSystem.web.kt ├── compottie-lite ├── build.gradle.kts └── src │ └── commonMain │ └── kotlin │ └── io │ └── github │ └── alexzhirkevich │ └── compottie │ └── LottiePainter.lite.kt ├── compottie-network-core ├── build.gradle.kts └── src │ ├── androidMain │ └── kotlin │ │ └── io │ │ └── github │ │ └── alexzhirkevich │ │ └── compottie │ │ └── NetworkFontManager.android.kt │ ├── commonMain │ └── kotlin │ │ └── io │ │ └── github │ │ └── alexzhirkevich │ │ └── compottie │ │ ├── DiskCache.kt │ │ ├── DiskCacheStrategy.kt │ │ ├── DiskLruCache.kt │ │ ├── FaultHidingSink.kt │ │ ├── LottieCacheStrategy.kt │ │ ├── Network.kt │ │ ├── NetworkAssetsManager.kt │ │ ├── NetworkFontManager.kt │ │ ├── RealDiskCache.kt │ │ └── UrlCompositionSpec.kt │ └── skikoMain │ └── kotlin │ └── io │ └── github │ └── alexzhirkevich │ └── compottie │ └── NetworkFontManager.skiko.kt ├── compottie-network ├── build.gradle.kts └── src │ └── commonMain │ └── kotlin │ └── io │ └── github │ └── alexzhirkevich │ └── compottie │ ├── DefaultHttpClient.kt │ ├── NetworkAssetsManager.kt │ ├── NetworkFontManager.kt │ └── UrlCompositionSpec.kt ├── compottie-resources ├── build.gradle.kts └── src │ ├── androidMain │ └── kotlin │ │ └── io │ │ └── github │ │ └── alexzhirkevich │ │ └── compottie │ │ └── ResourcesFontManager.android.kt │ ├── commonMain │ └── kotlin │ │ └── io │ │ └── github │ │ └── alexzhirkevich │ │ └── compottie │ │ ├── ResourcesAssetsManager.kt │ │ └── ResourcesFontManager.kt │ └── skikoMain │ └── kotlin │ └── io │ └── github │ └── alexzhirkevich │ └── compottie │ └── ResourcesFontManager.skiko.kt ├── compottie ├── build.gradle.kts └── src │ └── commonMain │ └── kotlin │ └── io │ └── github │ └── alexzhirkevich │ └── compottie │ ├── ExpressionsRuntimeImpl.kt │ ├── LottiePainter.kt │ └── expressions │ ├── Color.kt │ ├── ExpressionComposition.kt │ ├── Interpolate.kt │ ├── Math.kt │ ├── Random.kt │ └── Time.kt ├── dynamic_properties.md ├── example ├── androidApp │ ├── .gitignore │ ├── build.gradle.kts │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ └── MainActivity.kt │ │ └── res │ │ ├── drawable │ │ ├── ic_launcher_background.xml │ │ └── ic_launcher_foreground.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── themes.xml ├── desktopApp │ ├── build.gradle.kts │ └── src │ │ └── jvmMain │ │ └── kotlin │ │ └── main.desktop.kt ├── iosApp │ ├── Configuration │ │ └── Config.xcconfig │ ├── iosApp.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── iosApp.xcscheme │ └── iosApp │ │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ └── app-icon-1024.png │ │ └── Contents.json │ │ ├── ContentView.swift │ │ ├── Info.plist │ │ ├── Preview Content │ │ └── Preview Assets.xcassets │ │ │ └── Contents.json │ │ ├── iOSApp.swift │ │ └── iosApp.entitlements ├── shared │ ├── build.gradle.kts │ └── src │ │ ├── androidMain │ │ └── kotlin │ │ │ └── BlurHashDecoder.android.kt │ │ ├── commonMain │ │ ├── composeResources │ │ │ ├── drawable │ │ │ │ └── gh.png │ │ │ ├── files │ │ │ │ ├── angel.json │ │ │ │ ├── astronaut.json │ │ │ │ ├── autoorient.json │ │ │ │ ├── blending.json │ │ │ │ ├── bouncing_ball.json │ │ │ │ ├── checkmark.json │ │ │ │ ├── confetti.json │ │ │ │ ├── dash.json │ │ │ │ ├── dotlottie │ │ │ │ │ ├── day_night_switch.lottie │ │ │ │ │ ├── dot.lottie │ │ │ │ │ ├── dot_with_image.lottie │ │ │ │ │ ├── download.lottie │ │ │ │ │ ├── github.lottie │ │ │ │ │ ├── like.lottie │ │ │ │ │ ├── lottiefiles.lottie │ │ │ │ │ └── play_pause.lottie │ │ │ │ ├── expr │ │ │ │ │ ├── move_horizontal.json │ │ │ │ │ ├── noise.json │ │ │ │ │ └── wiggle.json │ │ │ │ ├── fade_balls.json │ │ │ │ ├── gradient_ellipse.json │ │ │ │ ├── image_asset.json │ │ │ │ ├── image_asset_embedded.json │ │ │ │ ├── images │ │ │ │ │ └── blep.png │ │ │ │ ├── luma_matte.json │ │ │ │ ├── mask_add.json │ │ │ │ ├── mobilo │ │ │ │ │ ├── A.json │ │ │ │ │ ├── Apostrophe.json │ │ │ │ │ ├── B.json │ │ │ │ │ ├── BlinkingCursor.json │ │ │ │ │ ├── C.json │ │ │ │ │ ├── Colon.json │ │ │ │ │ ├── Comma.json │ │ │ │ │ ├── D.json │ │ │ │ │ ├── E.json │ │ │ │ │ ├── F.json │ │ │ │ │ ├── G.json │ │ │ │ │ ├── H.json │ │ │ │ │ ├── I.json │ │ │ │ │ ├── J.json │ │ │ │ │ ├── K.json │ │ │ │ │ ├── L.json │ │ │ │ │ ├── M.json │ │ │ │ │ ├── N.json │ │ │ │ │ ├── O.json │ │ │ │ │ ├── P.json │ │ │ │ │ ├── Q.json │ │ │ │ │ ├── R.json │ │ │ │ │ ├── S.json │ │ │ │ │ ├── T.json │ │ │ │ │ ├── U.json │ │ │ │ │ ├── V.json │ │ │ │ │ ├── W.json │ │ │ │ │ ├── X.json │ │ │ │ │ ├── Y.json │ │ │ │ │ └── Z.json │ │ │ │ ├── people.json │ │ │ │ ├── polystar.json │ │ │ │ ├── precomp_with_remapping.json │ │ │ │ ├── rect.json │ │ │ │ ├── repeater.json │ │ │ │ ├── robot.json │ │ │ │ ├── robot_404.json │ │ │ │ ├── rounding_corners.json │ │ │ │ ├── roundrect.json │ │ │ │ ├── skewed_stroke.json │ │ │ │ ├── test.json │ │ │ │ ├── text.json │ │ │ │ ├── text_glyphs.json │ │ │ │ ├── text_offset.json │ │ │ │ ├── text_with_path.json │ │ │ │ ├── view_arrow.json │ │ │ │ ├── walkthrough.json │ │ │ │ ├── wonders.json │ │ │ │ └── zzzzzz_broken_tangents_1.json │ │ │ └── font │ │ │ │ ├── ComicNeue.ttf │ │ │ │ ├── Karla-Bold.ttf │ │ │ │ ├── Karla-ExtraBold.ttf │ │ │ │ ├── Karla-Regular.ttf │ │ │ │ └── Karla-SemiBold.ttf │ │ └── kotlin │ │ │ ├── App.kt │ │ │ ├── BlurHash.kt │ │ │ ├── BlurHashPainter.kt │ │ │ ├── TestPlayground.kt │ │ │ ├── interactivecontrols │ │ │ └── InteractiveControlsScreen.kt │ │ │ └── lottiefiles │ │ │ ├── LottieDetails.kt │ │ │ ├── LottieFile.kt │ │ │ ├── LottieFilesExample.kt │ │ │ ├── LottieFilesViewModel.kt │ │ │ ├── OpacityGridPainter.kt │ │ │ ├── SortOrder.kt │ │ │ ├── Suggestion.kt │ │ │ ├── icons │ │ │ ├── ArrowBack.kt │ │ │ ├── ArrowForward.kt │ │ │ ├── Download.kt │ │ │ ├── OpenInNew.kt │ │ │ ├── Repeat.kt │ │ │ ├── RepeatOne.kt │ │ │ └── Sort.kt │ │ │ └── theme │ │ │ ├── Color.kt │ │ │ └── Theme.kt │ │ ├── iosMain │ │ └── kotlin │ │ │ └── main.ios.kt │ │ └── skikoMain │ │ └── kotlin │ │ └── BlurHashDecoder.skiko.kt └── webApp │ ├── build.gradle.kts │ └── src │ ├── jsMain │ └── kotlin │ │ └── Window.js.kt │ ├── wasmJsMain │ └── kotlin │ │ └── Window.wasmJs.kt │ └── webMain │ ├── kotlin │ ├── Window.web.kt │ └── main.web.kt │ └── resources │ └── index.html ├── gradle.properties ├── gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle.kts ├── supported_expressions.md └── supported_features.md /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: true 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/non_rendering_bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/.github/ISSUE_TEMPLATE/non_rendering_bug.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/rendering_bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/.github/ISSUE_TEMPLATE/rendering_bug.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/README.md -------------------------------------------------------------------------------- /compottie-core/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/build.gradle.kts -------------------------------------------------------------------------------- /compottie-core/src/androidMain/kotlin/io/github/alexzhirkevich/compottie/LottieContext.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/androidMain/kotlin/io/github/alexzhirkevich/compottie/LottieContext.android.kt -------------------------------------------------------------------------------- /compottie-core/src/androidMain/kotlin/io/github/alexzhirkevich/compottie/LottiePainter.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/androidMain/kotlin/io/github/alexzhirkevich/compottie/LottiePainter.android.kt -------------------------------------------------------------------------------- /compottie-core/src/androidMain/kotlin/io/github/alexzhirkevich/compottie/internal/platform/PlatformCanvas.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/androidMain/kotlin/io/github/alexzhirkevich/compottie/internal/platform/PlatformCanvas.android.kt -------------------------------------------------------------------------------- /compottie-core/src/androidMain/kotlin/io/github/alexzhirkevich/compottie/internal/platform/PlatformImage.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/androidMain/kotlin/io/github/alexzhirkevich/compottie/internal/platform/PlatformImage.android.kt -------------------------------------------------------------------------------- /compottie-core/src/androidMain/kotlin/io/github/alexzhirkevich/compottie/internal/platform/PlatformPath.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/androidMain/kotlin/io/github/alexzhirkevich/compottie/internal/platform/PlatformPath.android.kt -------------------------------------------------------------------------------- /compottie-core/src/androidMain/kotlin/io/github/alexzhirkevich/compottie/internal/platform/PlatformShader.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/androidMain/kotlin/io/github/alexzhirkevich/compottie/internal/platform/PlatformShader.android.kt -------------------------------------------------------------------------------- /compottie-core/src/androidMain/kotlin/io/github/alexzhirkevich/compottie/internal/platform/PlatformText.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/androidMain/kotlin/io/github/alexzhirkevich/compottie/internal/platform/PlatformText.android.kt -------------------------------------------------------------------------------- /compottie-core/src/androidMain/kotlin/io/github/alexzhirkevich/compottie/internal/platform/effects/PlatformDropShadowEffect.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/androidMain/kotlin/io/github/alexzhirkevich/compottie/internal/platform/effects/PlatformDropShadowEffect.android.kt -------------------------------------------------------------------------------- /compottie-core/src/androidMain/kotlin/io/github/alexzhirkevich/compottie/internal/platform/effects/PlatformLayerEffect.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/androidMain/kotlin/io/github/alexzhirkevich/compottie/internal/platform/effects/PlatformLayerEffect.android.kt -------------------------------------------------------------------------------- /compottie-core/src/androidMain/resources/META-INF/io/github/alexzhirkevich/compottie/verification.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/androidMain/resources/META-INF/io/github/alexzhirkevich/compottie/verification.properties -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/Compottie.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/Compottie.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/CompottieException.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/CompottieException.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/ExperimentalCompottieApi.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/ExperimentalCompottieApi.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/IODispatcher.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/IODispatcher.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/InternalCompottieApi.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/InternalCompottieApi.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/LottieAnimState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/LottieAnimState.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/LottieAnimatable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/LottieAnimatable.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/LottieAnimationFormat.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/LottieAnimationFormat.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/LottieCancellationBehavior.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/LottieCancellationBehavior.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/LottieClipSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/LottieClipSpec.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/LottieComposition.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/LottieComposition.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/LottieCompositionCache.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/LottieCompositionCache.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/LottieCompositionResult.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/LottieCompositionResult.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/LottieCompositionSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/LottieCompositionSpec.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/LottieContext.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/LottieContext.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/LottieLogger.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/LottieLogger.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/LottiePainter.core.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/LottiePainter.core.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/LruMap.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/LruMap.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/MultiOwnerMutex.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/MultiOwnerMutex.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/animateLottieCompositionAsState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/animateLottieCompositionAsState.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/assets/ImageRepresentable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/assets/ImageRepresentable.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/assets/LottieAssetsManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/assets/LottieAssetsManager.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/assets/LottieFontManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/assets/LottieFontManager.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/assets/LottieFontSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/assets/LottieFontSpec.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/assets/LottieImageSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/assets/LottieImageSpec.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/dynamic/DynamicDraw.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/dynamic/DynamicDraw.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/dynamic/DynamicEllipse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/dynamic/DynamicEllipse.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/dynamic/DynamicFill.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/dynamic/DynamicFill.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/dynamic/DynamicImageLayer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/dynamic/DynamicImageLayer.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/dynamic/DynamicLayer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/dynamic/DynamicLayer.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/dynamic/DynamicPolystar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/dynamic/DynamicPolystar.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/dynamic/DynamicRect.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/dynamic/DynamicRect.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/dynamic/DynamicShape.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/dynamic/DynamicShape.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/dynamic/DynamicShapeLayer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/dynamic/DynamicShapeLayer.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/dynamic/DynamicStroke.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/dynamic/DynamicStroke.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/dynamic/DynamicTextLayer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/dynamic/DynamicTextLayer.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/dynamic/DynamicTransform.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/dynamic/DynamicTransform.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/dynamic/LottieDynamicProperties.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/dynamic/LottieDynamicProperties.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/dynamic/PathMatching.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/dynamic/PathMatching.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/dynamic/PropertyProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/dynamic/PropertyProvider.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/dynamic/_DynamicCompositionProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/dynamic/_DynamicCompositionProvider.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/dynamic/_DynamicDrawProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/dynamic/_DynamicDrawProvider.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/dynamic/_DynamicEllipseProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/dynamic/_DynamicEllipseProvider.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/dynamic/_DynamicFillProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/dynamic/_DynamicFillProvider.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/dynamic/_DynamicImageLayerProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/dynamic/_DynamicImageLayerProvider.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/dynamic/_DynamicLayerProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/dynamic/_DynamicLayerProvider.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/dynamic/_DynamicPolystarProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/dynamic/_DynamicPolystarProvider.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/dynamic/_DynamicRectProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/dynamic/_DynamicRectProvider.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/dynamic/_DynamicShapeLayerProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/dynamic/_DynamicShapeLayerProvider.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/dynamic/_DynamicShapeProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/dynamic/_DynamicShapeProvider.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/dynamic/_DynamicStrokeProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/dynamic/_DynamicStrokeProvider.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/dynamic/_DynamicTextLayerProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/dynamic/_DynamicTextLayerProvider.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/dynamic/_DynamicTransformProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/dynamic/_DynamicTransformProvider.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/dynamic/_GradientBuilderImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/dynamic/_GradientBuilderImpl.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/Animation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/Animation.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/AnimationState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/AnimationState.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/LottieJson.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/LottieJson.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/Slots.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/Slots.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/animation/AnimatedColor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/animation/AnimatedColor.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/animation/AnimatedGradient.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/animation/AnimatedGradient.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/animation/AnimatedNumber.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/animation/AnimatedNumber.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/animation/AnimatedShape.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/animation/AnimatedShape.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/animation/AnimatedTextDocument.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/animation/AnimatedTextDocument.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/animation/AnimatedTransform.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/animation/AnimatedTransform.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/animation/AnimatedVector2.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/animation/AnimatedVector2.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/animation/AnimatedVectorN.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/animation/AnimatedVectorN.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/animation/BaseKeyframeAnimation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/animation/BaseKeyframeAnimation.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/animation/BezierInterpolation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/animation/BezierInterpolation.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/animation/BezierKeyframe.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/animation/BezierKeyframe.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/animation/ColorKeyframe.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/animation/ColorKeyframe.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/animation/ColorKeyframeAnimation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/animation/ColorKeyframeAnimation.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/animation/DynamicProperty.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/animation/DynamicProperty.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/animation/ExpressionHolder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/animation/ExpressionHolder.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/animation/ExpressionProperty.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/animation/ExpressionProperty.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/animation/Keyframe.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/animation/Keyframe.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/animation/PropertyGroup.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/animation/PropertyGroup.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/animation/RawProperty.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/animation/RawProperty.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/animation/RepeaterTransform.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/animation/RepeaterTransform.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/animation/TextDocumentKeyframe.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/animation/TextDocumentKeyframe.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/animation/ValueKeyframe.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/animation/ValueKeyframe.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/animation/ValueKeyframeAnimation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/animation/ValueKeyframeAnimation.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/animation/VectorKeyframe.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/animation/VectorKeyframe.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/animation/VectorKeyframeAnimation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/animation/VectorKeyframeAnimation.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/animation/expressions/ExpressionComposition.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/animation/expressions/ExpressionComposition.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/animation/expressions/ExpressionConverter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/animation/expressions/ExpressionConverter.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/animation/expressions/ExpressionEvaluator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/animation/expressions/ExpressionEvaluator.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/animation/expressions/ExpressionsRuntime.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/animation/expressions/ExpressionsRuntime.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/animation/expressions/Layer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/animation/expressions/Layer.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/animation/expressions/Loop.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/animation/expressions/Loop.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/animation/expressions/Smooth.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/animation/expressions/Smooth.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/animation/expressions/Wiggle.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/animation/expressions/Wiggle.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/assets/CharacterData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/assets/CharacterData.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/assets/CharacterPath.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/assets/CharacterPath.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/assets/ImageAsset.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/assets/ImageAsset.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/assets/LottieAsset.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/assets/LottieAsset.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/assets/LottieFileAsset.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/assets/LottieFileAsset.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/assets/LottieFontAsset.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/assets/LottieFontAsset.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/assets/PrecompositionAsset.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/assets/PrecompositionAsset.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/content/Content.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/content/Content.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/content/ContentGroup.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/content/ContentGroup.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/content/ContentGroupImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/content/ContentGroupImpl.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/content/DrawingContent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/content/DrawingContent.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/content/GreedyContent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/content/GreedyContent.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/content/PathContent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/content/PathContent.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/effects/BlurEffect.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/effects/BlurEffect.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/effects/DropShadowEffect.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/effects/DropShadowEffect.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/effects/EffectValue.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/effects/EffectValue.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/effects/FillEffect.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/effects/FillEffect.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/effects/LayerEffect.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/effects/LayerEffect.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/effects/LayerEffectsApplier.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/effects/LayerEffectsApplier.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/effects/TintEffect.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/effects/TintEffect.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/helpers/Bezier.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/helpers/Bezier.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/helpers/BooleanInt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/helpers/BooleanInt.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/helpers/ColorsWithStops.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/helpers/ColorsWithStops.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/helpers/CompoundTrimPath.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/helpers/CompoundTrimPath.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/helpers/FillRule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/helpers/FillRule.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/helpers/GradientColors.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/helpers/GradientColors.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/helpers/GradientType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/helpers/GradientType.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/helpers/LottieBlendMode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/helpers/LottieBlendMode.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/helpers/Marker.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/helpers/Marker.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/helpers/Mask.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/helpers/Mask.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/helpers/MatteMode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/helpers/MatteMode.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/helpers/StrokeDash.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/helpers/StrokeDash.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/helpers/Transform.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/helpers/Transform.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/helpers/TrimPathType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/helpers/TrimPathType.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/helpers/text/TextAlignment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/helpers/text/TextAlignment.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/helpers/text/TextBased.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/helpers/text/TextBased.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/helpers/text/TextCaps.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/helpers/text/TextCaps.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/helpers/text/TextData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/helpers/text/TextData.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/helpers/text/TextDocument.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/helpers/text/TextDocument.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/helpers/text/TextFollowPath.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/helpers/text/TextFollowPath.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/helpers/text/TextGrouping.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/helpers/text/TextGrouping.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/helpers/text/TextJustify.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/helpers/text/TextJustify.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/helpers/text/TextRange.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/helpers/text/TextRange.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/helpers/text/TextRangeSelector.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/helpers/text/TextRangeSelector.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/helpers/text/TextRangeUnits.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/helpers/text/TextRangeUnits.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/helpers/text/TextShape.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/helpers/text/TextShape.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/helpers/text/TextStyle.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/helpers/text/TextStyle.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/layers/BaseCompositionLayer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/layers/BaseCompositionLayer.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/layers/BaseLayer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/layers/BaseLayer.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/layers/CompositionLayer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/layers/CompositionLayer.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/layers/ImageLayer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/layers/ImageLayer.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/layers/Layer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/layers/Layer.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/layers/NullLayer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/layers/NullLayer.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/layers/PrecompositionLayer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/layers/PrecompositionLayer.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/layers/ShapeLayer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/layers/ShapeLayer.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/layers/SolidColorLayer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/layers/SolidColorLayer.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/layers/TextLayer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/layers/TextLayer.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/platform/PlatformCanvas.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/platform/PlatformCanvas.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/platform/PlatformImage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/platform/PlatformImage.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/platform/PlatformPath.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/platform/PlatformPath.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/platform/PlatformShader.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/platform/PlatformShader.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/platform/PlatformText.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/platform/PlatformText.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/platform/effects/PlatformDropShadowEffect.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/platform/effects/PlatformDropShadowEffect.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/platform/effects/PlatformLayerEffect.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/platform/effects/PlatformLayerEffect.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/shapes/BaseStrokeShape.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/shapes/BaseStrokeShape.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/shapes/EllipseShape.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/shapes/EllipseShape.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/shapes/FillShape.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/shapes/FillShape.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/shapes/GradientFillShape.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/shapes/GradientFillShape.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/shapes/GradientStrokeShape.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/shapes/GradientStrokeShape.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/shapes/GroupShape.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/shapes/GroupShape.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/shapes/MergePathsShape.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/shapes/MergePathsShape.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/shapes/PathShape.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/shapes/PathShape.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/shapes/PolystarShape.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/shapes/PolystarShape.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/shapes/RectShape.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/shapes/RectShape.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/shapes/RepeaterShape.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/shapes/RepeaterShape.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/shapes/RoundShape.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/shapes/RoundShape.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/shapes/Shape.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/shapes/Shape.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/shapes/SolidStrokeShape.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/shapes/SolidStrokeShape.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/shapes/TransformShape.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/shapes/TransformShape.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/shapes/TrimPathShape.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/shapes/TrimPathShape.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/utils/Matrix.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/utils/Matrix.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/utils/MiscUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/utils/MiscUtil.kt -------------------------------------------------------------------------------- /compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/utils/MutableRect.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/internal/utils/MutableRect.kt -------------------------------------------------------------------------------- /compottie-core/src/commonTest/kotlin/io/github/alexzhirkevich/compottie/dynamic/PathMatchingTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/commonTest/kotlin/io/github/alexzhirkevich/compottie/dynamic/PathMatchingTest.kt -------------------------------------------------------------------------------- /compottie-core/src/jvmNativeMain/kotlin/io/github/alexzhirkevich/compottie/IoDispatcher.jvmNative.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/jvmNativeMain/kotlin/io/github/alexzhirkevich/compottie/IoDispatcher.jvmNative.kt -------------------------------------------------------------------------------- /compottie-core/src/skikoMain/kotlin/io/github/alexzhirkevich/compottie/LottieContext.skiko.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/skikoMain/kotlin/io/github/alexzhirkevich/compottie/LottieContext.skiko.kt -------------------------------------------------------------------------------- /compottie-core/src/skikoMain/kotlin/io/github/alexzhirkevich/compottie/LottiePainter.skiko.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/skikoMain/kotlin/io/github/alexzhirkevich/compottie/LottiePainter.skiko.kt -------------------------------------------------------------------------------- /compottie-core/src/skikoMain/kotlin/io/github/alexzhirkevich/compottie/internal/platform/PlatformCanvas.skiko.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/skikoMain/kotlin/io/github/alexzhirkevich/compottie/internal/platform/PlatformCanvas.skiko.kt -------------------------------------------------------------------------------- /compottie-core/src/skikoMain/kotlin/io/github/alexzhirkevich/compottie/internal/platform/PlatformImage.skiko.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/skikoMain/kotlin/io/github/alexzhirkevich/compottie/internal/platform/PlatformImage.skiko.kt -------------------------------------------------------------------------------- /compottie-core/src/skikoMain/kotlin/io/github/alexzhirkevich/compottie/internal/platform/PlatformPath.skiko.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/skikoMain/kotlin/io/github/alexzhirkevich/compottie/internal/platform/PlatformPath.skiko.kt -------------------------------------------------------------------------------- /compottie-core/src/skikoMain/kotlin/io/github/alexzhirkevich/compottie/internal/platform/PlatformShader.skiko.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/skikoMain/kotlin/io/github/alexzhirkevich/compottie/internal/platform/PlatformShader.skiko.kt -------------------------------------------------------------------------------- /compottie-core/src/skikoMain/kotlin/io/github/alexzhirkevich/compottie/internal/platform/PlatformText.skiko.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/skikoMain/kotlin/io/github/alexzhirkevich/compottie/internal/platform/PlatformText.skiko.kt -------------------------------------------------------------------------------- /compottie-core/src/skikoMain/kotlin/io/github/alexzhirkevich/compottie/internal/platform/effects/PlatformDropShadowEffect.skiko.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/skikoMain/kotlin/io/github/alexzhirkevich/compottie/internal/platform/effects/PlatformDropShadowEffect.skiko.kt -------------------------------------------------------------------------------- /compottie-core/src/skikoMain/kotlin/io/github/alexzhirkevich/compottie/internal/platform/effects/PlatformLayerEffect.skiko.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/skikoMain/kotlin/io/github/alexzhirkevich/compottie/internal/platform/effects/PlatformLayerEffect.skiko.kt -------------------------------------------------------------------------------- /compottie-core/src/webMain/kotlin/io/github/alexzhirkevich/compottie/IoDispatcher.web.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-core/src/webMain/kotlin/io/github/alexzhirkevich/compottie/IoDispatcher.web.kt -------------------------------------------------------------------------------- /compottie-dot/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-dot/build.gradle.kts -------------------------------------------------------------------------------- /compottie-dot/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/DotLottieAssetsManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-dot/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/DotLottieAssetsManager.kt -------------------------------------------------------------------------------- /compottie-dot/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/DotLottieCompositionSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-dot/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/DotLottieCompositionSpec.kt -------------------------------------------------------------------------------- /compottie-dot/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/DotLottieManifest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-dot/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/DotLottieManifest.kt -------------------------------------------------------------------------------- /compottie-dot/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/FakeFileSystem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-dot/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/FakeFileSystem.kt -------------------------------------------------------------------------------- /compottie-dot/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/FileCompositionSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-dot/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/FileCompositionSpec.kt -------------------------------------------------------------------------------- /compottie-dot/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/FileSystem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-dot/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/FileSystem.kt -------------------------------------------------------------------------------- /compottie-dot/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/Time.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-dot/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/Time.kt -------------------------------------------------------------------------------- /compottie-dot/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/ZipEntry.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-dot/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/ZipEntry.kt -------------------------------------------------------------------------------- /compottie-dot/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/ZipFileSystem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-dot/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/ZipFileSystem.kt -------------------------------------------------------------------------------- /compottie-dot/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/ZipFiles.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-dot/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/ZipFiles.kt -------------------------------------------------------------------------------- /compottie-dot/src/javaMain/kotlin/io/github/alexzhirkevich/compottie/Time.java.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-dot/src/javaMain/kotlin/io/github/alexzhirkevich/compottie/Time.java.kt -------------------------------------------------------------------------------- /compottie-dot/src/jsMain/kotlin/io/github/alexzhirkevich/compottie/DecompressionStream.js.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-dot/src/jsMain/kotlin/io/github/alexzhirkevich/compottie/DecompressionStream.js.kt -------------------------------------------------------------------------------- /compottie-dot/src/jsMain/kotlin/io/github/alexzhirkevich/compottie/FileSystem.js.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-dot/src/jsMain/kotlin/io/github/alexzhirkevich/compottie/FileSystem.js.kt -------------------------------------------------------------------------------- /compottie-dot/src/jsMain/kotlin/io/github/alexzhirkevich/compottie/Time.js.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-dot/src/jsMain/kotlin/io/github/alexzhirkevich/compottie/Time.js.kt -------------------------------------------------------------------------------- /compottie-dot/src/jsMain/kotlin/io/github/alexzhirkevich/compottie/ZipFileSystem.js.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-dot/src/jsMain/kotlin/io/github/alexzhirkevich/compottie/ZipFileSystem.js.kt -------------------------------------------------------------------------------- /compottie-dot/src/jvmNativeMain/kotlin/io/github/alexzhirkevich/compottie/FileSystem.jvmNative.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-dot/src/jvmNativeMain/kotlin/io/github/alexzhirkevich/compottie/FileSystem.jvmNative.kt -------------------------------------------------------------------------------- /compottie-dot/src/jvmNativeMain/kotlin/io/github/alexzhirkevich/compottie/ZipFileSystem.jvmNative.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-dot/src/jvmNativeMain/kotlin/io/github/alexzhirkevich/compottie/ZipFileSystem.jvmNative.kt -------------------------------------------------------------------------------- /compottie-dot/src/nativeMain/kotlin/io/github/alexzhirkevich/compottie/Time.native.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-dot/src/nativeMain/kotlin/io/github/alexzhirkevich/compottie/Time.native.kt -------------------------------------------------------------------------------- /compottie-dot/src/wasmJsMain/kotlin/io/github/alexzhirkevich/compottie/Conversion.wasmJs.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-dot/src/wasmJsMain/kotlin/io/github/alexzhirkevich/compottie/Conversion.wasmJs.kt -------------------------------------------------------------------------------- /compottie-dot/src/wasmJsMain/kotlin/io/github/alexzhirkevich/compottie/DecompressionStream.wasmJs.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-dot/src/wasmJsMain/kotlin/io/github/alexzhirkevich/compottie/DecompressionStream.wasmJs.kt -------------------------------------------------------------------------------- /compottie-dot/src/wasmJsMain/kotlin/io/github/alexzhirkevich/compottie/Time.wasmJs.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-dot/src/wasmJsMain/kotlin/io/github/alexzhirkevich/compottie/Time.wasmJs.kt -------------------------------------------------------------------------------- /compottie-dot/src/wasmJsMain/kotlin/io/github/alexzhirkevich/compottie/ZipFileSystem.wasmJs.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-dot/src/wasmJsMain/kotlin/io/github/alexzhirkevich/compottie/ZipFileSystem.wasmJs.kt -------------------------------------------------------------------------------- /compottie-dot/src/webMain/kotlin/io/github/alexzhirkevich/compottie/DecompressionStream.web.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-dot/src/webMain/kotlin/io/github/alexzhirkevich/compottie/DecompressionStream.web.kt -------------------------------------------------------------------------------- /compottie-dot/src/webMain/kotlin/io/github/alexzhirkevich/compottie/FileSystem.web.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-dot/src/webMain/kotlin/io/github/alexzhirkevich/compottie/FileSystem.web.kt -------------------------------------------------------------------------------- /compottie-dot/src/webMain/kotlin/io/github/alexzhirkevich/compottie/ZipFileSystem.web.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-dot/src/webMain/kotlin/io/github/alexzhirkevich/compottie/ZipFileSystem.web.kt -------------------------------------------------------------------------------- /compottie-lite/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-lite/build.gradle.kts -------------------------------------------------------------------------------- /compottie-lite/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/LottiePainter.lite.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-lite/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/LottiePainter.lite.kt -------------------------------------------------------------------------------- /compottie-network-core/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-network-core/build.gradle.kts -------------------------------------------------------------------------------- /compottie-network-core/src/androidMain/kotlin/io/github/alexzhirkevich/compottie/NetworkFontManager.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-network-core/src/androidMain/kotlin/io/github/alexzhirkevich/compottie/NetworkFontManager.android.kt -------------------------------------------------------------------------------- /compottie-network-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/DiskCache.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-network-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/DiskCache.kt -------------------------------------------------------------------------------- /compottie-network-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/DiskCacheStrategy.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-network-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/DiskCacheStrategy.kt -------------------------------------------------------------------------------- /compottie-network-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/DiskLruCache.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-network-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/DiskLruCache.kt -------------------------------------------------------------------------------- /compottie-network-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/FaultHidingSink.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-network-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/FaultHidingSink.kt -------------------------------------------------------------------------------- /compottie-network-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/LottieCacheStrategy.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-network-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/LottieCacheStrategy.kt -------------------------------------------------------------------------------- /compottie-network-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/Network.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-network-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/Network.kt -------------------------------------------------------------------------------- /compottie-network-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/NetworkAssetsManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-network-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/NetworkAssetsManager.kt -------------------------------------------------------------------------------- /compottie-network-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/NetworkFontManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-network-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/NetworkFontManager.kt -------------------------------------------------------------------------------- /compottie-network-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/RealDiskCache.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-network-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/RealDiskCache.kt -------------------------------------------------------------------------------- /compottie-network-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/UrlCompositionSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-network-core/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/UrlCompositionSpec.kt -------------------------------------------------------------------------------- /compottie-network-core/src/skikoMain/kotlin/io/github/alexzhirkevich/compottie/NetworkFontManager.skiko.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-network-core/src/skikoMain/kotlin/io/github/alexzhirkevich/compottie/NetworkFontManager.skiko.kt -------------------------------------------------------------------------------- /compottie-network/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-network/build.gradle.kts -------------------------------------------------------------------------------- /compottie-network/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/DefaultHttpClient.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-network/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/DefaultHttpClient.kt -------------------------------------------------------------------------------- /compottie-network/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/NetworkAssetsManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-network/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/NetworkAssetsManager.kt -------------------------------------------------------------------------------- /compottie-network/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/NetworkFontManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-network/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/NetworkFontManager.kt -------------------------------------------------------------------------------- /compottie-network/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/UrlCompositionSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-network/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/UrlCompositionSpec.kt -------------------------------------------------------------------------------- /compottie-resources/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-resources/build.gradle.kts -------------------------------------------------------------------------------- /compottie-resources/src/androidMain/kotlin/io/github/alexzhirkevich/compottie/ResourcesFontManager.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-resources/src/androidMain/kotlin/io/github/alexzhirkevich/compottie/ResourcesFontManager.android.kt -------------------------------------------------------------------------------- /compottie-resources/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/ResourcesAssetsManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-resources/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/ResourcesAssetsManager.kt -------------------------------------------------------------------------------- /compottie-resources/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/ResourcesFontManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-resources/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/ResourcesFontManager.kt -------------------------------------------------------------------------------- /compottie-resources/src/skikoMain/kotlin/io/github/alexzhirkevich/compottie/ResourcesFontManager.skiko.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie-resources/src/skikoMain/kotlin/io/github/alexzhirkevich/compottie/ResourcesFontManager.skiko.kt -------------------------------------------------------------------------------- /compottie/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie/build.gradle.kts -------------------------------------------------------------------------------- /compottie/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/ExpressionsRuntimeImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/ExpressionsRuntimeImpl.kt -------------------------------------------------------------------------------- /compottie/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/LottiePainter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/LottiePainter.kt -------------------------------------------------------------------------------- /compottie/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/expressions/Color.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/expressions/Color.kt -------------------------------------------------------------------------------- /compottie/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/expressions/ExpressionComposition.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/expressions/ExpressionComposition.kt -------------------------------------------------------------------------------- /compottie/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/expressions/Interpolate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/expressions/Interpolate.kt -------------------------------------------------------------------------------- /compottie/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/expressions/Math.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/expressions/Math.kt -------------------------------------------------------------------------------- /compottie/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/expressions/Random.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/expressions/Random.kt -------------------------------------------------------------------------------- /compottie/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/expressions/Time.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/compottie/src/commonMain/kotlin/io/github/alexzhirkevich/compottie/expressions/Time.kt -------------------------------------------------------------------------------- /dynamic_properties.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/dynamic_properties.md -------------------------------------------------------------------------------- /example/androidApp/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /example/androidApp/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/androidApp/build.gradle.kts -------------------------------------------------------------------------------- /example/androidApp/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/androidApp/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/androidApp/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/androidApp/src/main/kotlin/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/androidApp/src/main/kotlin/MainActivity.kt -------------------------------------------------------------------------------- /example/androidApp/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/androidApp/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /example/androidApp/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/androidApp/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /example/androidApp/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/androidApp/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /example/androidApp/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/androidApp/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /example/androidApp/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/androidApp/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /example/androidApp/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/androidApp/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /example/androidApp/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/androidApp/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /example/androidApp/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/androidApp/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /example/androidApp/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/androidApp/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /example/androidApp/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/androidApp/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /example/androidApp/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/androidApp/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /example/androidApp/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/androidApp/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /example/androidApp/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/androidApp/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /example/androidApp/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/androidApp/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /example/androidApp/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/androidApp/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /example/androidApp/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/androidApp/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /example/androidApp/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/androidApp/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /example/desktopApp/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/desktopApp/build.gradle.kts -------------------------------------------------------------------------------- /example/desktopApp/src/jvmMain/kotlin/main.desktop.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/desktopApp/src/jvmMain/kotlin/main.desktop.kt -------------------------------------------------------------------------------- /example/iosApp/Configuration/Config.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/iosApp/Configuration/Config.xcconfig -------------------------------------------------------------------------------- /example/iosApp/iosApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/iosApp/iosApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/iosApp/iosApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/iosApp/iosApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/iosApp/iosApp.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/iosApp/iosApp.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /example/iosApp/iosApp.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/iosApp/iosApp.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /example/iosApp/iosApp.xcodeproj/xcshareddata/xcschemes/iosApp.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/iosApp/iosApp.xcodeproj/xcshareddata/xcschemes/iosApp.xcscheme -------------------------------------------------------------------------------- /example/iosApp/iosApp/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/iosApp/iosApp/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /example/iosApp/iosApp/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/iosApp/iosApp/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example/iosApp/iosApp/Assets.xcassets/AppIcon.appiconset/app-icon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/iosApp/iosApp/Assets.xcassets/AppIcon.appiconset/app-icon-1024.png -------------------------------------------------------------------------------- /example/iosApp/iosApp/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/iosApp/iosApp/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /example/iosApp/iosApp/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/iosApp/iosApp/ContentView.swift -------------------------------------------------------------------------------- /example/iosApp/iosApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/iosApp/iosApp/Info.plist -------------------------------------------------------------------------------- /example/iosApp/iosApp/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/iosApp/iosApp/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /example/iosApp/iosApp/iOSApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/iosApp/iosApp/iOSApp.swift -------------------------------------------------------------------------------- /example/iosApp/iosApp/iosApp.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/iosApp/iosApp/iosApp.entitlements -------------------------------------------------------------------------------- /example/shared/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/build.gradle.kts -------------------------------------------------------------------------------- /example/shared/src/androidMain/kotlin/BlurHashDecoder.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/androidMain/kotlin/BlurHashDecoder.android.kt -------------------------------------------------------------------------------- /example/shared/src/commonMain/composeResources/drawable/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/composeResources/drawable/gh.png -------------------------------------------------------------------------------- /example/shared/src/commonMain/composeResources/files/angel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/composeResources/files/angel.json -------------------------------------------------------------------------------- /example/shared/src/commonMain/composeResources/files/astronaut.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/composeResources/files/astronaut.json -------------------------------------------------------------------------------- /example/shared/src/commonMain/composeResources/files/autoorient.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/composeResources/files/autoorient.json -------------------------------------------------------------------------------- /example/shared/src/commonMain/composeResources/files/blending.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/composeResources/files/blending.json -------------------------------------------------------------------------------- /example/shared/src/commonMain/composeResources/files/bouncing_ball.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/composeResources/files/bouncing_ball.json -------------------------------------------------------------------------------- /example/shared/src/commonMain/composeResources/files/checkmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/composeResources/files/checkmark.json -------------------------------------------------------------------------------- /example/shared/src/commonMain/composeResources/files/confetti.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/composeResources/files/confetti.json -------------------------------------------------------------------------------- /example/shared/src/commonMain/composeResources/files/dash.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/composeResources/files/dash.json -------------------------------------------------------------------------------- /example/shared/src/commonMain/composeResources/files/dotlottie/day_night_switch.lottie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/composeResources/files/dotlottie/day_night_switch.lottie -------------------------------------------------------------------------------- /example/shared/src/commonMain/composeResources/files/dotlottie/dot.lottie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/composeResources/files/dotlottie/dot.lottie -------------------------------------------------------------------------------- /example/shared/src/commonMain/composeResources/files/dotlottie/dot_with_image.lottie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/composeResources/files/dotlottie/dot_with_image.lottie -------------------------------------------------------------------------------- /example/shared/src/commonMain/composeResources/files/dotlottie/download.lottie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/composeResources/files/dotlottie/download.lottie -------------------------------------------------------------------------------- /example/shared/src/commonMain/composeResources/files/dotlottie/github.lottie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/composeResources/files/dotlottie/github.lottie -------------------------------------------------------------------------------- /example/shared/src/commonMain/composeResources/files/dotlottie/like.lottie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/composeResources/files/dotlottie/like.lottie -------------------------------------------------------------------------------- /example/shared/src/commonMain/composeResources/files/dotlottie/lottiefiles.lottie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/composeResources/files/dotlottie/lottiefiles.lottie -------------------------------------------------------------------------------- /example/shared/src/commonMain/composeResources/files/dotlottie/play_pause.lottie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/composeResources/files/dotlottie/play_pause.lottie -------------------------------------------------------------------------------- /example/shared/src/commonMain/composeResources/files/expr/move_horizontal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/composeResources/files/expr/move_horizontal.json -------------------------------------------------------------------------------- /example/shared/src/commonMain/composeResources/files/expr/noise.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/composeResources/files/expr/noise.json -------------------------------------------------------------------------------- /example/shared/src/commonMain/composeResources/files/expr/wiggle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/composeResources/files/expr/wiggle.json -------------------------------------------------------------------------------- /example/shared/src/commonMain/composeResources/files/fade_balls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/composeResources/files/fade_balls.json -------------------------------------------------------------------------------- /example/shared/src/commonMain/composeResources/files/gradient_ellipse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/composeResources/files/gradient_ellipse.json -------------------------------------------------------------------------------- /example/shared/src/commonMain/composeResources/files/image_asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/composeResources/files/image_asset.json -------------------------------------------------------------------------------- /example/shared/src/commonMain/composeResources/files/image_asset_embedded.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/composeResources/files/image_asset_embedded.json -------------------------------------------------------------------------------- /example/shared/src/commonMain/composeResources/files/images/blep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/composeResources/files/images/blep.png -------------------------------------------------------------------------------- /example/shared/src/commonMain/composeResources/files/luma_matte.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/composeResources/files/luma_matte.json -------------------------------------------------------------------------------- /example/shared/src/commonMain/composeResources/files/mask_add.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/composeResources/files/mask_add.json -------------------------------------------------------------------------------- /example/shared/src/commonMain/composeResources/files/mobilo/A.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/composeResources/files/mobilo/A.json -------------------------------------------------------------------------------- /example/shared/src/commonMain/composeResources/files/mobilo/Apostrophe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/composeResources/files/mobilo/Apostrophe.json -------------------------------------------------------------------------------- /example/shared/src/commonMain/composeResources/files/mobilo/B.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/composeResources/files/mobilo/B.json -------------------------------------------------------------------------------- /example/shared/src/commonMain/composeResources/files/mobilo/BlinkingCursor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/composeResources/files/mobilo/BlinkingCursor.json -------------------------------------------------------------------------------- /example/shared/src/commonMain/composeResources/files/mobilo/C.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/composeResources/files/mobilo/C.json -------------------------------------------------------------------------------- /example/shared/src/commonMain/composeResources/files/mobilo/Colon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/composeResources/files/mobilo/Colon.json -------------------------------------------------------------------------------- /example/shared/src/commonMain/composeResources/files/mobilo/Comma.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/composeResources/files/mobilo/Comma.json -------------------------------------------------------------------------------- /example/shared/src/commonMain/composeResources/files/mobilo/D.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/composeResources/files/mobilo/D.json -------------------------------------------------------------------------------- /example/shared/src/commonMain/composeResources/files/mobilo/E.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/composeResources/files/mobilo/E.json -------------------------------------------------------------------------------- /example/shared/src/commonMain/composeResources/files/mobilo/F.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/composeResources/files/mobilo/F.json -------------------------------------------------------------------------------- /example/shared/src/commonMain/composeResources/files/mobilo/G.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/composeResources/files/mobilo/G.json -------------------------------------------------------------------------------- /example/shared/src/commonMain/composeResources/files/mobilo/H.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/composeResources/files/mobilo/H.json -------------------------------------------------------------------------------- /example/shared/src/commonMain/composeResources/files/mobilo/I.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/composeResources/files/mobilo/I.json -------------------------------------------------------------------------------- /example/shared/src/commonMain/composeResources/files/mobilo/J.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/composeResources/files/mobilo/J.json -------------------------------------------------------------------------------- /example/shared/src/commonMain/composeResources/files/mobilo/K.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/composeResources/files/mobilo/K.json -------------------------------------------------------------------------------- /example/shared/src/commonMain/composeResources/files/mobilo/L.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/composeResources/files/mobilo/L.json -------------------------------------------------------------------------------- /example/shared/src/commonMain/composeResources/files/mobilo/M.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/composeResources/files/mobilo/M.json -------------------------------------------------------------------------------- /example/shared/src/commonMain/composeResources/files/mobilo/N.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/composeResources/files/mobilo/N.json -------------------------------------------------------------------------------- /example/shared/src/commonMain/composeResources/files/mobilo/O.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/composeResources/files/mobilo/O.json -------------------------------------------------------------------------------- /example/shared/src/commonMain/composeResources/files/mobilo/P.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/composeResources/files/mobilo/P.json -------------------------------------------------------------------------------- /example/shared/src/commonMain/composeResources/files/mobilo/Q.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/composeResources/files/mobilo/Q.json -------------------------------------------------------------------------------- /example/shared/src/commonMain/composeResources/files/mobilo/R.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/composeResources/files/mobilo/R.json -------------------------------------------------------------------------------- /example/shared/src/commonMain/composeResources/files/mobilo/S.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/composeResources/files/mobilo/S.json -------------------------------------------------------------------------------- /example/shared/src/commonMain/composeResources/files/mobilo/T.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/composeResources/files/mobilo/T.json -------------------------------------------------------------------------------- /example/shared/src/commonMain/composeResources/files/mobilo/U.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/composeResources/files/mobilo/U.json -------------------------------------------------------------------------------- /example/shared/src/commonMain/composeResources/files/mobilo/V.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/composeResources/files/mobilo/V.json -------------------------------------------------------------------------------- /example/shared/src/commonMain/composeResources/files/mobilo/W.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/composeResources/files/mobilo/W.json -------------------------------------------------------------------------------- /example/shared/src/commonMain/composeResources/files/mobilo/X.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/composeResources/files/mobilo/X.json -------------------------------------------------------------------------------- /example/shared/src/commonMain/composeResources/files/mobilo/Y.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/composeResources/files/mobilo/Y.json -------------------------------------------------------------------------------- /example/shared/src/commonMain/composeResources/files/mobilo/Z.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/composeResources/files/mobilo/Z.json -------------------------------------------------------------------------------- /example/shared/src/commonMain/composeResources/files/people.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/composeResources/files/people.json -------------------------------------------------------------------------------- /example/shared/src/commonMain/composeResources/files/polystar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/composeResources/files/polystar.json -------------------------------------------------------------------------------- /example/shared/src/commonMain/composeResources/files/precomp_with_remapping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/composeResources/files/precomp_with_remapping.json -------------------------------------------------------------------------------- /example/shared/src/commonMain/composeResources/files/rect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/composeResources/files/rect.json -------------------------------------------------------------------------------- /example/shared/src/commonMain/composeResources/files/repeater.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/composeResources/files/repeater.json -------------------------------------------------------------------------------- /example/shared/src/commonMain/composeResources/files/robot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/composeResources/files/robot.json -------------------------------------------------------------------------------- /example/shared/src/commonMain/composeResources/files/robot_404.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/composeResources/files/robot_404.json -------------------------------------------------------------------------------- /example/shared/src/commonMain/composeResources/files/rounding_corners.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/composeResources/files/rounding_corners.json -------------------------------------------------------------------------------- /example/shared/src/commonMain/composeResources/files/roundrect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/composeResources/files/roundrect.json -------------------------------------------------------------------------------- /example/shared/src/commonMain/composeResources/files/skewed_stroke.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/composeResources/files/skewed_stroke.json -------------------------------------------------------------------------------- /example/shared/src/commonMain/composeResources/files/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/composeResources/files/test.json -------------------------------------------------------------------------------- /example/shared/src/commonMain/composeResources/files/text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/composeResources/files/text.json -------------------------------------------------------------------------------- /example/shared/src/commonMain/composeResources/files/text_glyphs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/composeResources/files/text_glyphs.json -------------------------------------------------------------------------------- /example/shared/src/commonMain/composeResources/files/text_offset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/composeResources/files/text_offset.json -------------------------------------------------------------------------------- /example/shared/src/commonMain/composeResources/files/text_with_path.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/composeResources/files/text_with_path.json -------------------------------------------------------------------------------- /example/shared/src/commonMain/composeResources/files/view_arrow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/composeResources/files/view_arrow.json -------------------------------------------------------------------------------- /example/shared/src/commonMain/composeResources/files/walkthrough.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/composeResources/files/walkthrough.json -------------------------------------------------------------------------------- /example/shared/src/commonMain/composeResources/files/wonders.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/composeResources/files/wonders.json -------------------------------------------------------------------------------- /example/shared/src/commonMain/composeResources/files/zzzzzz_broken_tangents_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/composeResources/files/zzzzzz_broken_tangents_1.json -------------------------------------------------------------------------------- /example/shared/src/commonMain/composeResources/font/ComicNeue.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/composeResources/font/ComicNeue.ttf -------------------------------------------------------------------------------- /example/shared/src/commonMain/composeResources/font/Karla-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/composeResources/font/Karla-Bold.ttf -------------------------------------------------------------------------------- /example/shared/src/commonMain/composeResources/font/Karla-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/composeResources/font/Karla-ExtraBold.ttf -------------------------------------------------------------------------------- /example/shared/src/commonMain/composeResources/font/Karla-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/composeResources/font/Karla-Regular.ttf -------------------------------------------------------------------------------- /example/shared/src/commonMain/composeResources/font/Karla-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/composeResources/font/Karla-SemiBold.ttf -------------------------------------------------------------------------------- /example/shared/src/commonMain/kotlin/App.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/kotlin/App.kt -------------------------------------------------------------------------------- /example/shared/src/commonMain/kotlin/BlurHash.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/kotlin/BlurHash.kt -------------------------------------------------------------------------------- /example/shared/src/commonMain/kotlin/BlurHashPainter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/kotlin/BlurHashPainter.kt -------------------------------------------------------------------------------- /example/shared/src/commonMain/kotlin/TestPlayground.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/kotlin/TestPlayground.kt -------------------------------------------------------------------------------- /example/shared/src/commonMain/kotlin/interactivecontrols/InteractiveControlsScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/kotlin/interactivecontrols/InteractiveControlsScreen.kt -------------------------------------------------------------------------------- /example/shared/src/commonMain/kotlin/lottiefiles/LottieDetails.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/kotlin/lottiefiles/LottieDetails.kt -------------------------------------------------------------------------------- /example/shared/src/commonMain/kotlin/lottiefiles/LottieFile.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/kotlin/lottiefiles/LottieFile.kt -------------------------------------------------------------------------------- /example/shared/src/commonMain/kotlin/lottiefiles/LottieFilesExample.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/kotlin/lottiefiles/LottieFilesExample.kt -------------------------------------------------------------------------------- /example/shared/src/commonMain/kotlin/lottiefiles/LottieFilesViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/kotlin/lottiefiles/LottieFilesViewModel.kt -------------------------------------------------------------------------------- /example/shared/src/commonMain/kotlin/lottiefiles/OpacityGridPainter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/kotlin/lottiefiles/OpacityGridPainter.kt -------------------------------------------------------------------------------- /example/shared/src/commonMain/kotlin/lottiefiles/SortOrder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/kotlin/lottiefiles/SortOrder.kt -------------------------------------------------------------------------------- /example/shared/src/commonMain/kotlin/lottiefiles/Suggestion.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/kotlin/lottiefiles/Suggestion.kt -------------------------------------------------------------------------------- /example/shared/src/commonMain/kotlin/lottiefiles/icons/ArrowBack.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/kotlin/lottiefiles/icons/ArrowBack.kt -------------------------------------------------------------------------------- /example/shared/src/commonMain/kotlin/lottiefiles/icons/ArrowForward.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/kotlin/lottiefiles/icons/ArrowForward.kt -------------------------------------------------------------------------------- /example/shared/src/commonMain/kotlin/lottiefiles/icons/Download.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/kotlin/lottiefiles/icons/Download.kt -------------------------------------------------------------------------------- /example/shared/src/commonMain/kotlin/lottiefiles/icons/OpenInNew.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/kotlin/lottiefiles/icons/OpenInNew.kt -------------------------------------------------------------------------------- /example/shared/src/commonMain/kotlin/lottiefiles/icons/Repeat.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/kotlin/lottiefiles/icons/Repeat.kt -------------------------------------------------------------------------------- /example/shared/src/commonMain/kotlin/lottiefiles/icons/RepeatOne.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/kotlin/lottiefiles/icons/RepeatOne.kt -------------------------------------------------------------------------------- /example/shared/src/commonMain/kotlin/lottiefiles/icons/Sort.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/kotlin/lottiefiles/icons/Sort.kt -------------------------------------------------------------------------------- /example/shared/src/commonMain/kotlin/lottiefiles/theme/Color.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/kotlin/lottiefiles/theme/Color.kt -------------------------------------------------------------------------------- /example/shared/src/commonMain/kotlin/lottiefiles/theme/Theme.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/commonMain/kotlin/lottiefiles/theme/Theme.kt -------------------------------------------------------------------------------- /example/shared/src/iosMain/kotlin/main.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/iosMain/kotlin/main.ios.kt -------------------------------------------------------------------------------- /example/shared/src/skikoMain/kotlin/BlurHashDecoder.skiko.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/shared/src/skikoMain/kotlin/BlurHashDecoder.skiko.kt -------------------------------------------------------------------------------- /example/webApp/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/webApp/build.gradle.kts -------------------------------------------------------------------------------- /example/webApp/src/jsMain/kotlin/Window.js.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/webApp/src/jsMain/kotlin/Window.js.kt -------------------------------------------------------------------------------- /example/webApp/src/wasmJsMain/kotlin/Window.wasmJs.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/webApp/src/wasmJsMain/kotlin/Window.wasmJs.kt -------------------------------------------------------------------------------- /example/webApp/src/webMain/kotlin/Window.web.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/webApp/src/webMain/kotlin/Window.web.kt -------------------------------------------------------------------------------- /example/webApp/src/webMain/kotlin/main.web.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/webApp/src/webMain/kotlin/main.web.kt -------------------------------------------------------------------------------- /example/webApp/src/webMain/resources/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/example/webApp/src/webMain/resources/index.html -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/settings.gradle.kts -------------------------------------------------------------------------------- /supported_expressions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/supported_expressions.md -------------------------------------------------------------------------------- /supported_features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzhirkevich/compottie/HEAD/supported_features.md --------------------------------------------------------------------------------