├── .gitignore ├── .idea ├── .gitignore ├── compiler.xml ├── deploymentTargetDropDown.xml ├── gradle.xml ├── inspectionProfiles │ └── Project_Default.xml ├── markdown-navigator-enh.xml ├── markdown-navigator.xml ├── misc.xml └── vcs.xml ├── LICENSE ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── theapache64 │ │ └── composeanimationplayground │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── theapache64 │ │ │ └── composeanimationplayground │ │ │ ├── App.kt │ │ │ ├── model │ │ │ ├── AnimationItem.kt │ │ │ └── AnimationScreen.kt │ │ │ ├── ui │ │ │ ├── TransparentTest.kt │ │ │ ├── composable │ │ │ │ ├── AnimationItem.kt │ │ │ │ ├── BigColumn.kt │ │ │ │ ├── ChildSample.kt │ │ │ │ ├── ComposeLogo.kt │ │ │ │ ├── TeslaLogo.kt │ │ │ │ └── VerticalSpace.kt │ │ │ ├── screen │ │ │ │ ├── AppNavigation.kt │ │ │ │ ├── MainActivity.kt │ │ │ │ ├── Screen.kt │ │ │ │ ├── animation │ │ │ │ │ ├── AnimatableScreen.kt │ │ │ │ │ ├── AnimatedVisibilityScreen.kt │ │ │ │ │ ├── ChildTransitionDemo.kt │ │ │ │ │ ├── CrossfadeScreen.kt │ │ │ │ │ ├── InfiniteTransitionDemo.kt │ │ │ │ │ ├── UpdateTransitionAnimateContentScreen.kt │ │ │ │ │ ├── UpdateTransitionScreen.kt │ │ │ │ │ ├── animatedcontent │ │ │ │ │ │ ├── AnimateContentSizeScreen.kt │ │ │ │ │ │ ├── CustomTransitionScreen.kt │ │ │ │ │ │ ├── DefaultScreen.kt │ │ │ │ │ │ └── SizeTransformScreen.kt │ │ │ │ │ ├── animatedvisibility │ │ │ │ │ │ ├── AnimateEnterExitOnChildDemo.kt │ │ │ │ │ │ ├── AnimatedVisibilityAdvancedDemo.kt │ │ │ │ │ │ ├── DefaultDemo.kt │ │ │ │ │ │ ├── ExpandInShrinkOutDemo.kt │ │ │ │ │ │ ├── ExpandShrinkHorizontallyDemo.kt │ │ │ │ │ │ ├── ExpandShrinkVerticallyDemo.kt │ │ │ │ │ │ ├── FadeInFadeOutDemo.kt │ │ │ │ │ │ ├── MutableTransitionStateScreen.kt │ │ │ │ │ │ ├── ScaleInOutDemo.kt │ │ │ │ │ │ ├── SlideInOutDemo.kt │ │ │ │ │ │ ├── SlideInOutHorizontallyDemo.kt │ │ │ │ │ │ ├── SlideInOutVerticallyDemo.kt │ │ │ │ │ │ └── TransitionApiDemo.kt │ │ │ │ │ └── animateproperty │ │ │ │ │ │ ├── AnimateColorAsStateDemo.kt │ │ │ │ │ │ ├── AnimateDpAsStateDemo.kt │ │ │ │ │ │ ├── AnimateFloatAsStateDemo.kt │ │ │ │ │ │ ├── AnimateIntAsStateDemo.kt │ │ │ │ │ │ ├── AnimateOffsetAsStateDemo.kt │ │ │ │ │ │ ├── AnimatePropertyAsStateScreen.kt │ │ │ │ │ │ ├── AnimateRectAsStateDemo.kt │ │ │ │ │ │ └── AnimateSizeAsStateDemo.kt │ │ │ │ ├── selector │ │ │ │ │ └── AnimationSelectorScreen.kt │ │ │ │ └── splash │ │ │ │ │ ├── SplashScreen.kt │ │ │ │ │ └── SplashViewModel.kt │ │ │ └── theme │ │ │ │ ├── Color.kt │ │ │ │ ├── Shape.kt │ │ │ │ ├── Theme.kt │ │ │ │ └── Typography.kt │ │ │ └── util │ │ │ ├── .gitkeep │ │ │ └── flow │ │ │ └── EventFlow.kt │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ ├── ic_launcher_background.xml │ │ ├── ic_logo_compose.png │ │ └── ic_logo_tesla.png │ │ ├── font │ │ ├── google_sans_bold.ttf │ │ ├── google_sans_medium.ttf │ │ └── google_sans_regular.ttf │ │ ├── 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 │ └── test │ └── java │ └── com │ └── theapache64 │ └── composeanimationplayground │ └── ExampleUnitTest.kt ├── cover.jpeg ├── gpm.json ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/deploymentTargetDropDown.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/.idea/deploymentTargetDropDown.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/markdown-navigator-enh.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/.idea/markdown-navigator-enh.xml -------------------------------------------------------------------------------- /.idea/markdown-navigator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/.idea/markdown-navigator.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/theapache64/composeanimationplayground/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/app/src/androidTest/java/com/theapache64/composeanimationplayground/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/theapache64/composeanimationplayground/App.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/app/src/main/java/com/theapache64/composeanimationplayground/App.kt -------------------------------------------------------------------------------- /app/src/main/java/com/theapache64/composeanimationplayground/model/AnimationItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/app/src/main/java/com/theapache64/composeanimationplayground/model/AnimationItem.kt -------------------------------------------------------------------------------- /app/src/main/java/com/theapache64/composeanimationplayground/model/AnimationScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/app/src/main/java/com/theapache64/composeanimationplayground/model/AnimationScreen.kt -------------------------------------------------------------------------------- /app/src/main/java/com/theapache64/composeanimationplayground/ui/TransparentTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/app/src/main/java/com/theapache64/composeanimationplayground/ui/TransparentTest.kt -------------------------------------------------------------------------------- /app/src/main/java/com/theapache64/composeanimationplayground/ui/composable/AnimationItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/app/src/main/java/com/theapache64/composeanimationplayground/ui/composable/AnimationItem.kt -------------------------------------------------------------------------------- /app/src/main/java/com/theapache64/composeanimationplayground/ui/composable/BigColumn.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/app/src/main/java/com/theapache64/composeanimationplayground/ui/composable/BigColumn.kt -------------------------------------------------------------------------------- /app/src/main/java/com/theapache64/composeanimationplayground/ui/composable/ChildSample.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/app/src/main/java/com/theapache64/composeanimationplayground/ui/composable/ChildSample.kt -------------------------------------------------------------------------------- /app/src/main/java/com/theapache64/composeanimationplayground/ui/composable/ComposeLogo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/app/src/main/java/com/theapache64/composeanimationplayground/ui/composable/ComposeLogo.kt -------------------------------------------------------------------------------- /app/src/main/java/com/theapache64/composeanimationplayground/ui/composable/TeslaLogo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/app/src/main/java/com/theapache64/composeanimationplayground/ui/composable/TeslaLogo.kt -------------------------------------------------------------------------------- /app/src/main/java/com/theapache64/composeanimationplayground/ui/composable/VerticalSpace.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/app/src/main/java/com/theapache64/composeanimationplayground/ui/composable/VerticalSpace.kt -------------------------------------------------------------------------------- /app/src/main/java/com/theapache64/composeanimationplayground/ui/screen/AppNavigation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/app/src/main/java/com/theapache64/composeanimationplayground/ui/screen/AppNavigation.kt -------------------------------------------------------------------------------- /app/src/main/java/com/theapache64/composeanimationplayground/ui/screen/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/app/src/main/java/com/theapache64/composeanimationplayground/ui/screen/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/theapache64/composeanimationplayground/ui/screen/Screen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/app/src/main/java/com/theapache64/composeanimationplayground/ui/screen/Screen.kt -------------------------------------------------------------------------------- /app/src/main/java/com/theapache64/composeanimationplayground/ui/screen/animation/AnimatableScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/app/src/main/java/com/theapache64/composeanimationplayground/ui/screen/animation/AnimatableScreen.kt -------------------------------------------------------------------------------- /app/src/main/java/com/theapache64/composeanimationplayground/ui/screen/animation/AnimatedVisibilityScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/app/src/main/java/com/theapache64/composeanimationplayground/ui/screen/animation/AnimatedVisibilityScreen.kt -------------------------------------------------------------------------------- /app/src/main/java/com/theapache64/composeanimationplayground/ui/screen/animation/ChildTransitionDemo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/app/src/main/java/com/theapache64/composeanimationplayground/ui/screen/animation/ChildTransitionDemo.kt -------------------------------------------------------------------------------- /app/src/main/java/com/theapache64/composeanimationplayground/ui/screen/animation/CrossfadeScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/app/src/main/java/com/theapache64/composeanimationplayground/ui/screen/animation/CrossfadeScreen.kt -------------------------------------------------------------------------------- /app/src/main/java/com/theapache64/composeanimationplayground/ui/screen/animation/InfiniteTransitionDemo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/app/src/main/java/com/theapache64/composeanimationplayground/ui/screen/animation/InfiniteTransitionDemo.kt -------------------------------------------------------------------------------- /app/src/main/java/com/theapache64/composeanimationplayground/ui/screen/animation/UpdateTransitionAnimateContentScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/app/src/main/java/com/theapache64/composeanimationplayground/ui/screen/animation/UpdateTransitionAnimateContentScreen.kt -------------------------------------------------------------------------------- /app/src/main/java/com/theapache64/composeanimationplayground/ui/screen/animation/UpdateTransitionScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/app/src/main/java/com/theapache64/composeanimationplayground/ui/screen/animation/UpdateTransitionScreen.kt -------------------------------------------------------------------------------- /app/src/main/java/com/theapache64/composeanimationplayground/ui/screen/animation/animatedcontent/AnimateContentSizeScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/app/src/main/java/com/theapache64/composeanimationplayground/ui/screen/animation/animatedcontent/AnimateContentSizeScreen.kt -------------------------------------------------------------------------------- /app/src/main/java/com/theapache64/composeanimationplayground/ui/screen/animation/animatedcontent/CustomTransitionScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/app/src/main/java/com/theapache64/composeanimationplayground/ui/screen/animation/animatedcontent/CustomTransitionScreen.kt -------------------------------------------------------------------------------- /app/src/main/java/com/theapache64/composeanimationplayground/ui/screen/animation/animatedcontent/DefaultScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/app/src/main/java/com/theapache64/composeanimationplayground/ui/screen/animation/animatedcontent/DefaultScreen.kt -------------------------------------------------------------------------------- /app/src/main/java/com/theapache64/composeanimationplayground/ui/screen/animation/animatedcontent/SizeTransformScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/app/src/main/java/com/theapache64/composeanimationplayground/ui/screen/animation/animatedcontent/SizeTransformScreen.kt -------------------------------------------------------------------------------- /app/src/main/java/com/theapache64/composeanimationplayground/ui/screen/animation/animatedvisibility/AnimateEnterExitOnChildDemo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/app/src/main/java/com/theapache64/composeanimationplayground/ui/screen/animation/animatedvisibility/AnimateEnterExitOnChildDemo.kt -------------------------------------------------------------------------------- /app/src/main/java/com/theapache64/composeanimationplayground/ui/screen/animation/animatedvisibility/AnimatedVisibilityAdvancedDemo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/app/src/main/java/com/theapache64/composeanimationplayground/ui/screen/animation/animatedvisibility/AnimatedVisibilityAdvancedDemo.kt -------------------------------------------------------------------------------- /app/src/main/java/com/theapache64/composeanimationplayground/ui/screen/animation/animatedvisibility/DefaultDemo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/app/src/main/java/com/theapache64/composeanimationplayground/ui/screen/animation/animatedvisibility/DefaultDemo.kt -------------------------------------------------------------------------------- /app/src/main/java/com/theapache64/composeanimationplayground/ui/screen/animation/animatedvisibility/ExpandInShrinkOutDemo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/app/src/main/java/com/theapache64/composeanimationplayground/ui/screen/animation/animatedvisibility/ExpandInShrinkOutDemo.kt -------------------------------------------------------------------------------- /app/src/main/java/com/theapache64/composeanimationplayground/ui/screen/animation/animatedvisibility/ExpandShrinkHorizontallyDemo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/app/src/main/java/com/theapache64/composeanimationplayground/ui/screen/animation/animatedvisibility/ExpandShrinkHorizontallyDemo.kt -------------------------------------------------------------------------------- /app/src/main/java/com/theapache64/composeanimationplayground/ui/screen/animation/animatedvisibility/ExpandShrinkVerticallyDemo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/app/src/main/java/com/theapache64/composeanimationplayground/ui/screen/animation/animatedvisibility/ExpandShrinkVerticallyDemo.kt -------------------------------------------------------------------------------- /app/src/main/java/com/theapache64/composeanimationplayground/ui/screen/animation/animatedvisibility/FadeInFadeOutDemo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/app/src/main/java/com/theapache64/composeanimationplayground/ui/screen/animation/animatedvisibility/FadeInFadeOutDemo.kt -------------------------------------------------------------------------------- /app/src/main/java/com/theapache64/composeanimationplayground/ui/screen/animation/animatedvisibility/MutableTransitionStateScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/app/src/main/java/com/theapache64/composeanimationplayground/ui/screen/animation/animatedvisibility/MutableTransitionStateScreen.kt -------------------------------------------------------------------------------- /app/src/main/java/com/theapache64/composeanimationplayground/ui/screen/animation/animatedvisibility/ScaleInOutDemo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/app/src/main/java/com/theapache64/composeanimationplayground/ui/screen/animation/animatedvisibility/ScaleInOutDemo.kt -------------------------------------------------------------------------------- /app/src/main/java/com/theapache64/composeanimationplayground/ui/screen/animation/animatedvisibility/SlideInOutDemo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/app/src/main/java/com/theapache64/composeanimationplayground/ui/screen/animation/animatedvisibility/SlideInOutDemo.kt -------------------------------------------------------------------------------- /app/src/main/java/com/theapache64/composeanimationplayground/ui/screen/animation/animatedvisibility/SlideInOutHorizontallyDemo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/app/src/main/java/com/theapache64/composeanimationplayground/ui/screen/animation/animatedvisibility/SlideInOutHorizontallyDemo.kt -------------------------------------------------------------------------------- /app/src/main/java/com/theapache64/composeanimationplayground/ui/screen/animation/animatedvisibility/SlideInOutVerticallyDemo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/app/src/main/java/com/theapache64/composeanimationplayground/ui/screen/animation/animatedvisibility/SlideInOutVerticallyDemo.kt -------------------------------------------------------------------------------- /app/src/main/java/com/theapache64/composeanimationplayground/ui/screen/animation/animatedvisibility/TransitionApiDemo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/app/src/main/java/com/theapache64/composeanimationplayground/ui/screen/animation/animatedvisibility/TransitionApiDemo.kt -------------------------------------------------------------------------------- /app/src/main/java/com/theapache64/composeanimationplayground/ui/screen/animation/animateproperty/AnimateColorAsStateDemo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/app/src/main/java/com/theapache64/composeanimationplayground/ui/screen/animation/animateproperty/AnimateColorAsStateDemo.kt -------------------------------------------------------------------------------- /app/src/main/java/com/theapache64/composeanimationplayground/ui/screen/animation/animateproperty/AnimateDpAsStateDemo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/app/src/main/java/com/theapache64/composeanimationplayground/ui/screen/animation/animateproperty/AnimateDpAsStateDemo.kt -------------------------------------------------------------------------------- /app/src/main/java/com/theapache64/composeanimationplayground/ui/screen/animation/animateproperty/AnimateFloatAsStateDemo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/app/src/main/java/com/theapache64/composeanimationplayground/ui/screen/animation/animateproperty/AnimateFloatAsStateDemo.kt -------------------------------------------------------------------------------- /app/src/main/java/com/theapache64/composeanimationplayground/ui/screen/animation/animateproperty/AnimateIntAsStateDemo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/app/src/main/java/com/theapache64/composeanimationplayground/ui/screen/animation/animateproperty/AnimateIntAsStateDemo.kt -------------------------------------------------------------------------------- /app/src/main/java/com/theapache64/composeanimationplayground/ui/screen/animation/animateproperty/AnimateOffsetAsStateDemo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/app/src/main/java/com/theapache64/composeanimationplayground/ui/screen/animation/animateproperty/AnimateOffsetAsStateDemo.kt -------------------------------------------------------------------------------- /app/src/main/java/com/theapache64/composeanimationplayground/ui/screen/animation/animateproperty/AnimatePropertyAsStateScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/app/src/main/java/com/theapache64/composeanimationplayground/ui/screen/animation/animateproperty/AnimatePropertyAsStateScreen.kt -------------------------------------------------------------------------------- /app/src/main/java/com/theapache64/composeanimationplayground/ui/screen/animation/animateproperty/AnimateRectAsStateDemo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/app/src/main/java/com/theapache64/composeanimationplayground/ui/screen/animation/animateproperty/AnimateRectAsStateDemo.kt -------------------------------------------------------------------------------- /app/src/main/java/com/theapache64/composeanimationplayground/ui/screen/animation/animateproperty/AnimateSizeAsStateDemo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/app/src/main/java/com/theapache64/composeanimationplayground/ui/screen/animation/animateproperty/AnimateSizeAsStateDemo.kt -------------------------------------------------------------------------------- /app/src/main/java/com/theapache64/composeanimationplayground/ui/screen/selector/AnimationSelectorScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/app/src/main/java/com/theapache64/composeanimationplayground/ui/screen/selector/AnimationSelectorScreen.kt -------------------------------------------------------------------------------- /app/src/main/java/com/theapache64/composeanimationplayground/ui/screen/splash/SplashScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/app/src/main/java/com/theapache64/composeanimationplayground/ui/screen/splash/SplashScreen.kt -------------------------------------------------------------------------------- /app/src/main/java/com/theapache64/composeanimationplayground/ui/screen/splash/SplashViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/app/src/main/java/com/theapache64/composeanimationplayground/ui/screen/splash/SplashViewModel.kt -------------------------------------------------------------------------------- /app/src/main/java/com/theapache64/composeanimationplayground/ui/theme/Color.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/app/src/main/java/com/theapache64/composeanimationplayground/ui/theme/Color.kt -------------------------------------------------------------------------------- /app/src/main/java/com/theapache64/composeanimationplayground/ui/theme/Shape.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/app/src/main/java/com/theapache64/composeanimationplayground/ui/theme/Shape.kt -------------------------------------------------------------------------------- /app/src/main/java/com/theapache64/composeanimationplayground/ui/theme/Theme.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/app/src/main/java/com/theapache64/composeanimationplayground/ui/theme/Theme.kt -------------------------------------------------------------------------------- /app/src/main/java/com/theapache64/composeanimationplayground/ui/theme/Typography.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/app/src/main/java/com/theapache64/composeanimationplayground/ui/theme/Typography.kt -------------------------------------------------------------------------------- /app/src/main/java/com/theapache64/composeanimationplayground/util/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/main/java/com/theapache64/composeanimationplayground/util/flow/EventFlow.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/app/src/main/java/com/theapache64/composeanimationplayground/util/flow/EventFlow.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_logo_compose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/app/src/main/res/drawable/ic_logo_compose.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_logo_tesla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/app/src/main/res/drawable/ic_logo_tesla.png -------------------------------------------------------------------------------- /app/src/main/res/font/google_sans_bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/app/src/main/res/font/google_sans_bold.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/google_sans_medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/app/src/main/res/font/google_sans_medium.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/google_sans_regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/app/src/main/res/font/google_sans_regular.ttf -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /app/src/test/java/com/theapache64/composeanimationplayground/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/app/src/test/java/com/theapache64/composeanimationplayground/ExampleUnitTest.kt -------------------------------------------------------------------------------- /cover.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/cover.jpeg -------------------------------------------------------------------------------- /gpm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/gpm.json -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/compose-animation-playground/HEAD/settings.gradle --------------------------------------------------------------------------------