├── .gitignore ├── .idea ├── .gitignore ├── .name ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── inspectionProfiles │ └── Project_Default.xml └── vcs.xml ├── README.md ├── android ├── .gitignore ├── build.gradle.kts └── src │ └── main │ ├── AndroidManifest.xml │ └── java │ └── dev │ └── baseio │ └── android │ └── MainActivity.kt ├── common ├── build.gradle.kts └── src │ ├── androidMain │ ├── AndroidManifest.xml │ └── kotlin │ │ └── dev │ │ └── baseio │ │ ├── common │ │ ├── PainterRes.kt │ │ └── platform.kt │ │ └── composeplayground │ │ ├── contributors │ │ └── NetworkImageBox.kt │ │ └── ui │ │ └── animations │ │ └── anmolverma │ │ ├── desktopModifier.kt │ │ └── drawText.kt │ ├── commonMain │ ├── kotlin │ │ └── dev │ │ │ └── baseio │ │ │ ├── common │ │ │ ├── App.kt │ │ │ ├── DebugLog.kt │ │ │ ├── ExperimentalSnapperApi.kt │ │ │ ├── PainterRes.kt │ │ │ ├── WindowInfo.kt │ │ │ ├── WindowSize.kt │ │ │ ├── platform.kt │ │ │ ├── rememberPagerState.kt │ │ │ └── rememberSnapperFlingBehavior.kt │ │ │ └── composeplayground │ │ │ ├── contributors │ │ │ ├── AnmolVerma.kt │ │ │ └── CoilImageBox.kt │ │ │ └── ui │ │ │ ├── AnimationsPager.kt │ │ │ ├── animations │ │ │ └── anmolverma │ │ │ │ ├── AndroidMadSkills.kt │ │ │ │ ├── BellAnimation.kt │ │ │ │ ├── ChatMessageReactions.kt │ │ │ │ ├── CoolToolbarControl.kt │ │ │ │ ├── DiwaliFlame.kt │ │ │ │ ├── DribbleCircleTouch.kt │ │ │ │ ├── DuolingoBird.kt │ │ │ │ ├── Github404.kt │ │ │ │ ├── GlowingRingLoader.kt │ │ │ │ ├── IOSSleepSchedule.kt │ │ │ │ ├── LikeAnimation.kt │ │ │ │ ├── MacOsxDock.kt │ │ │ │ ├── MenuToClose.kt │ │ │ │ ├── NetFlixIntroAnimation.kt │ │ │ │ ├── NetFlixSplashAnim.kt │ │ │ │ ├── RandomFlutterCopy.kt │ │ │ │ ├── ScalingRotatingLoader.kt │ │ │ │ ├── ShootingStarsAnimation.kt │ │ │ │ ├── SlackAnimation.kt │ │ │ │ ├── TwitterSplashAnimation.kt │ │ │ │ ├── YahooWeatherAndSun.kt │ │ │ │ ├── drawText.kt │ │ │ │ ├── googleio2022 │ │ │ │ ├── GoogleIO.kt │ │ │ │ └── PaintMode.kt │ │ │ │ ├── gramophoneplayer │ │ │ │ ├── CircularList.kt │ │ │ │ └── GramophoneDisc.kt │ │ │ │ ├── loadingindicators │ │ │ │ ├── LoadingFiveLines.kt │ │ │ │ ├── LoadingFiveLinesCenter.kt │ │ │ │ ├── LoadingFiveLinesPulse.kt │ │ │ │ ├── LoadingIndicator.kt │ │ │ │ ├── LoadingPreviewView.kt │ │ │ │ ├── LoadingPulse.kt │ │ │ │ ├── LoadingThreeBalls.kt │ │ │ │ ├── LoadingThreeBallsBouncing.kt │ │ │ │ └── LoadingThreeBallsRotation.kt │ │ │ │ ├── netflixanim │ │ │ │ ├── BrushFurModel.kt │ │ │ │ ├── EffectBrush.kt │ │ │ │ └── EffectLumieres.kt │ │ │ │ ├── planetarysystem │ │ │ │ ├── Planet.kt │ │ │ │ └── PlanetarySystem.kt │ │ │ │ └── pulltorefresh │ │ │ │ ├── NightSky.kt │ │ │ │ ├── PullToRefreshYalantis1.kt │ │ │ │ └── particlesystem │ │ │ │ ├── Particle.kt │ │ │ │ └── StarParticleSystem.kt │ │ │ ├── learning │ │ │ ├── interactions │ │ │ │ ├── glow │ │ │ │ │ ├── GlowIndication.kt │ │ │ │ │ └── GlowTheme.kt │ │ │ │ └── scale │ │ │ │ │ ├── SpringIndication.kt │ │ │ │ │ └── SpringTheme.kt │ │ │ └── widget │ │ │ │ ├── FbSpringButton.kt │ │ │ │ └── GlowingTextField.kt │ │ │ └── theme │ │ │ ├── Color.kt │ │ │ ├── Shape.kt │ │ │ ├── Theme.kt │ │ │ └── Type.kt │ └── resources │ │ └── images │ │ ├── activitymonitor.png │ │ ├── airplane.png │ │ ├── airportutility.png │ │ ├── applewall.jpeg │ │ ├── appstore.png │ │ ├── automator.png │ │ ├── avatarshadow.png │ │ ├── background.jpeg │ │ ├── bluetoothfile.png │ │ ├── books.png │ │ ├── bootcamp.png │ │ ├── calculator.png │ │ ├── calendar.png │ │ ├── chess.png │ │ ├── clouds_center.png │ │ ├── clouds_left.png │ │ ├── clouds_right.png │ │ ├── colormeter.png │ │ ├── colorsync.png │ │ ├── console.png │ │ ├── contacts.png │ │ ├── deserthome1.png │ │ ├── desktop.png │ │ ├── dictionary.png │ │ ├── diskutility.png │ │ ├── facetime.png │ │ ├── feedbackassistant.png │ │ ├── findmy.png │ │ ├── fontbook.png │ │ ├── githubavatar.png │ │ ├── grapher.png │ │ ├── home.png │ │ ├── ic_alarm.xml │ │ ├── ic_bed.xml │ │ ├── ic_launcher_background.xml │ │ ├── ic_notification_bell.xml │ │ ├── ic_sun.xml │ │ ├── ic_thumb.xml │ │ ├── imagecapture.png │ │ ├── keychain.png │ │ ├── launchpad.png │ │ ├── mail.png │ │ ├── maps.png │ │ ├── messages.png │ │ ├── midi.png │ │ ├── migration.png │ │ ├── missioncontrol.png │ │ ├── music.png │ │ ├── network.png │ │ ├── news.png │ │ ├── notes.png │ │ ├── notfound.png │ │ ├── photobooth.png │ │ ├── photos.png │ │ ├── podcasts.png │ │ ├── preview.png │ │ ├── quicktime.png │ │ ├── reminders.png │ │ ├── safari.png │ │ ├── screenshot.png │ │ ├── screentime.png │ │ ├── scripteditor.png │ │ ├── siri.png │ │ ├── sound.png │ │ ├── spaceship.png │ │ ├── spshipshadow.png │ │ ├── stickies.png │ │ ├── stocks.png │ │ ├── systeminfo.png │ │ ├── systempreferences.png │ │ ├── terminal.png │ │ ├── textedit.png │ │ ├── timemachine.png │ │ ├── tv.png │ │ ├── twitter_icon.xml │ │ ├── update.png │ │ ├── voicememos.png │ │ └── voiceover.png │ ├── desktopMain │ └── kotlin │ │ └── dev │ │ └── baseio │ │ ├── common │ │ ├── DesktopApp.kt │ │ ├── PainterRes.kt │ │ └── platform.kt │ │ └── composeplayground │ │ ├── contributors │ │ └── NetworkImageBox.kt │ │ └── ui │ │ └── animations │ │ └── anmolverma │ │ ├── desktopModifier.kt │ │ └── drawText.kt │ ├── iosArm64Main │ └── kotlin │ │ └── dev │ │ └── baseio │ │ ├── common │ │ ├── PainterRes.kt │ │ └── getPlatformName.kt │ │ └── composeplayground │ │ ├── contributors │ │ └── NetworkImageBox.kt │ │ └── ui │ │ └── animations │ │ └── anmolverma │ │ ├── desktopModifier.kt │ │ └── drawText.kt │ ├── iosSimulatorArm64Main │ └── kotlin │ │ └── dev │ │ └── baseio │ │ ├── common │ │ ├── PainterRes.kt │ │ └── getPlatformName.kt │ │ └── composeplayground │ │ ├── contributors │ │ └── NetworkImageBox.kt │ │ └── ui │ │ └── animations │ │ └── anmolverma │ │ ├── desktopModifier.kt │ │ └── drawText.kt │ ├── iosX64Main │ └── kotlin │ │ └── dev │ │ └── baseio │ │ ├── common │ │ ├── PainterRes.kt │ │ └── getPlatformName.kt │ │ └── composeplayground │ │ ├── contributors │ │ └── NetworkImageBox.kt │ │ └── ui │ │ └── animations │ │ └── anmolverma │ │ ├── desktopModifier.kt │ │ └── drawText.kt │ └── main │ └── res │ ├── drawable-hdpi │ ├── airplane.png │ ├── clouds_center.png │ ├── clouds_left.png │ └── clouds_right.png │ ├── drawable-mdpi │ ├── airplane.png │ ├── clouds_center.png │ ├── clouds_left.png │ └── clouds_right.png │ ├── drawable-v24 │ └── ic_launcher_foreground.xml │ ├── drawable-xhdpi │ ├── airplane.png │ ├── clouds_center.png │ ├── clouds_left.png │ └── clouds_right.png │ ├── drawable-xxhdpi │ ├── airplane.png │ ├── clouds_center.png │ ├── clouds_left.png │ └── clouds_right.png │ ├── drawable-xxxhdpi │ ├── activitymonitor.png │ ├── airplane.png │ ├── airportutility.png │ ├── applewall.jpeg │ ├── appstore.png │ ├── automator.png │ ├── avatarshadow.png │ ├── background.jpeg │ ├── bluetoothfile.png │ ├── books.png │ ├── bootcamp.png │ ├── calculator.png │ ├── calendar.png │ ├── chess.png │ ├── clouds_center.png │ ├── clouds_left.png │ ├── clouds_right.png │ ├── colormeter.png │ ├── colorsync.png │ ├── console.png │ ├── contacts.png │ ├── deserthome1.png │ ├── desktop.png │ ├── dictionary.png │ ├── diskutility.png │ ├── facetime.png │ ├── feedbackassistant.png │ ├── findmy.png │ ├── fontbook.png │ ├── githubavatar.png │ ├── grapher.png │ ├── home.png │ ├── imagecapture.png │ ├── keychain.png │ ├── launchpad.png │ ├── mail.png │ ├── maps.png │ ├── messages.png │ ├── midi.png │ ├── migration.png │ ├── missioncontrol.png │ ├── music.png │ ├── network.png │ ├── news.png │ ├── notes.png │ ├── notfound.png │ ├── photobooth.png │ ├── photos.png │ ├── podcasts.png │ ├── preview.png │ ├── quicktime.png │ ├── reminders.png │ ├── safari.png │ ├── screenshot.png │ ├── screentime.png │ ├── scripteditor.png │ ├── siri.png │ ├── sound.png │ ├── spaceship.png │ ├── spshipshadow.png │ ├── stickies.png │ ├── stocks.png │ ├── systeminfo.png │ ├── systempreferences.png │ ├── terminal.png │ ├── textedit.png │ ├── timemachine.png │ ├── tv.png │ ├── update.png │ ├── voicememos.png │ └── voiceover.png │ ├── drawable │ ├── ic_alarm.xml │ ├── ic_bed.xml │ ├── ic_launcher_background.xml │ ├── ic_notification_bell.xml │ ├── ic_sun.xml │ ├── ic_thumb.xml │ └── twitter_icon.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 ├── desktop ├── .gitignore ├── build.gradle.kts └── src │ └── jvmMain │ └── kotlin │ └── Main.kt ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── iOSApp ├── .gitignore ├── build.gradle.kts └── src │ └── uikitMain │ └── kotlin │ └── main.uikit.kt └── settings.gradle.kts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | ComposeAnimationPlayground -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/README.md -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/android/build.gradle.kts -------------------------------------------------------------------------------- /android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/src/main/java/dev/baseio/android/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/android/src/main/java/dev/baseio/android/MainActivity.kt -------------------------------------------------------------------------------- /common/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/build.gradle.kts -------------------------------------------------------------------------------- /common/src/androidMain/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/androidMain/AndroidManifest.xml -------------------------------------------------------------------------------- /common/src/androidMain/kotlin/dev/baseio/common/PainterRes.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/androidMain/kotlin/dev/baseio/common/PainterRes.kt -------------------------------------------------------------------------------- /common/src/androidMain/kotlin/dev/baseio/common/platform.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/androidMain/kotlin/dev/baseio/common/platform.kt -------------------------------------------------------------------------------- /common/src/androidMain/kotlin/dev/baseio/composeplayground/contributors/NetworkImageBox.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/androidMain/kotlin/dev/baseio/composeplayground/contributors/NetworkImageBox.kt -------------------------------------------------------------------------------- /common/src/androidMain/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/desktopModifier.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/androidMain/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/desktopModifier.kt -------------------------------------------------------------------------------- /common/src/androidMain/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/drawText.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/androidMain/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/drawText.kt -------------------------------------------------------------------------------- /common/src/commonMain/kotlin/dev/baseio/common/App.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/kotlin/dev/baseio/common/App.kt -------------------------------------------------------------------------------- /common/src/commonMain/kotlin/dev/baseio/common/DebugLog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/kotlin/dev/baseio/common/DebugLog.kt -------------------------------------------------------------------------------- /common/src/commonMain/kotlin/dev/baseio/common/ExperimentalSnapperApi.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/kotlin/dev/baseio/common/ExperimentalSnapperApi.kt -------------------------------------------------------------------------------- /common/src/commonMain/kotlin/dev/baseio/common/PainterRes.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/kotlin/dev/baseio/common/PainterRes.kt -------------------------------------------------------------------------------- /common/src/commonMain/kotlin/dev/baseio/common/WindowInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/kotlin/dev/baseio/common/WindowInfo.kt -------------------------------------------------------------------------------- /common/src/commonMain/kotlin/dev/baseio/common/WindowSize.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/kotlin/dev/baseio/common/WindowSize.kt -------------------------------------------------------------------------------- /common/src/commonMain/kotlin/dev/baseio/common/platform.kt: -------------------------------------------------------------------------------- 1 | package dev.baseio.common 2 | 3 | expect fun getPlatformName(): String -------------------------------------------------------------------------------- /common/src/commonMain/kotlin/dev/baseio/common/rememberPagerState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/kotlin/dev/baseio/common/rememberPagerState.kt -------------------------------------------------------------------------------- /common/src/commonMain/kotlin/dev/baseio/common/rememberSnapperFlingBehavior.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/kotlin/dev/baseio/common/rememberSnapperFlingBehavior.kt -------------------------------------------------------------------------------- /common/src/commonMain/kotlin/dev/baseio/composeplayground/contributors/AnmolVerma.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/kotlin/dev/baseio/composeplayground/contributors/AnmolVerma.kt -------------------------------------------------------------------------------- /common/src/commonMain/kotlin/dev/baseio/composeplayground/contributors/CoilImageBox.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/kotlin/dev/baseio/composeplayground/contributors/CoilImageBox.kt -------------------------------------------------------------------------------- /common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/AnimationsPager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/AnimationsPager.kt -------------------------------------------------------------------------------- /common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/AndroidMadSkills.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/AndroidMadSkills.kt -------------------------------------------------------------------------------- /common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/BellAnimation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/BellAnimation.kt -------------------------------------------------------------------------------- /common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/ChatMessageReactions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/ChatMessageReactions.kt -------------------------------------------------------------------------------- /common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/CoolToolbarControl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/CoolToolbarControl.kt -------------------------------------------------------------------------------- /common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/DiwaliFlame.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/DiwaliFlame.kt -------------------------------------------------------------------------------- /common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/DribbleCircleTouch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/DribbleCircleTouch.kt -------------------------------------------------------------------------------- /common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/DuolingoBird.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/DuolingoBird.kt -------------------------------------------------------------------------------- /common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/Github404.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/Github404.kt -------------------------------------------------------------------------------- /common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/GlowingRingLoader.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/GlowingRingLoader.kt -------------------------------------------------------------------------------- /common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/IOSSleepSchedule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/IOSSleepSchedule.kt -------------------------------------------------------------------------------- /common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/LikeAnimation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/LikeAnimation.kt -------------------------------------------------------------------------------- /common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/MacOsxDock.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/MacOsxDock.kt -------------------------------------------------------------------------------- /common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/MenuToClose.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/MenuToClose.kt -------------------------------------------------------------------------------- /common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/NetFlixIntroAnimation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/NetFlixIntroAnimation.kt -------------------------------------------------------------------------------- /common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/NetFlixSplashAnim.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/NetFlixSplashAnim.kt -------------------------------------------------------------------------------- /common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/RandomFlutterCopy.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/RandomFlutterCopy.kt -------------------------------------------------------------------------------- /common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/ScalingRotatingLoader.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/ScalingRotatingLoader.kt -------------------------------------------------------------------------------- /common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/ShootingStarsAnimation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/ShootingStarsAnimation.kt -------------------------------------------------------------------------------- /common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/SlackAnimation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/SlackAnimation.kt -------------------------------------------------------------------------------- /common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/TwitterSplashAnimation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/TwitterSplashAnimation.kt -------------------------------------------------------------------------------- /common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/YahooWeatherAndSun.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/YahooWeatherAndSun.kt -------------------------------------------------------------------------------- /common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/drawText.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/drawText.kt -------------------------------------------------------------------------------- /common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/googleio2022/GoogleIO.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/googleio2022/GoogleIO.kt -------------------------------------------------------------------------------- /common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/googleio2022/PaintMode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/googleio2022/PaintMode.kt -------------------------------------------------------------------------------- /common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/gramophoneplayer/CircularList.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/gramophoneplayer/CircularList.kt -------------------------------------------------------------------------------- /common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/gramophoneplayer/GramophoneDisc.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/gramophoneplayer/GramophoneDisc.kt -------------------------------------------------------------------------------- /common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/loadingindicators/LoadingFiveLines.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/loadingindicators/LoadingFiveLines.kt -------------------------------------------------------------------------------- /common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/loadingindicators/LoadingFiveLinesCenter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/loadingindicators/LoadingFiveLinesCenter.kt -------------------------------------------------------------------------------- /common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/loadingindicators/LoadingFiveLinesPulse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/loadingindicators/LoadingFiveLinesPulse.kt -------------------------------------------------------------------------------- /common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/loadingindicators/LoadingIndicator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/loadingindicators/LoadingIndicator.kt -------------------------------------------------------------------------------- /common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/loadingindicators/LoadingPreviewView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/loadingindicators/LoadingPreviewView.kt -------------------------------------------------------------------------------- /common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/loadingindicators/LoadingPulse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/loadingindicators/LoadingPulse.kt -------------------------------------------------------------------------------- /common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/loadingindicators/LoadingThreeBalls.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/loadingindicators/LoadingThreeBalls.kt -------------------------------------------------------------------------------- /common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/loadingindicators/LoadingThreeBallsBouncing.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/loadingindicators/LoadingThreeBallsBouncing.kt -------------------------------------------------------------------------------- /common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/loadingindicators/LoadingThreeBallsRotation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/loadingindicators/LoadingThreeBallsRotation.kt -------------------------------------------------------------------------------- /common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/netflixanim/BrushFurModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/netflixanim/BrushFurModel.kt -------------------------------------------------------------------------------- /common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/netflixanim/EffectBrush.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/netflixanim/EffectBrush.kt -------------------------------------------------------------------------------- /common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/netflixanim/EffectLumieres.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/netflixanim/EffectLumieres.kt -------------------------------------------------------------------------------- /common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/planetarysystem/Planet.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/planetarysystem/Planet.kt -------------------------------------------------------------------------------- /common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/planetarysystem/PlanetarySystem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/planetarysystem/PlanetarySystem.kt -------------------------------------------------------------------------------- /common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/pulltorefresh/NightSky.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/pulltorefresh/NightSky.kt -------------------------------------------------------------------------------- /common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/pulltorefresh/PullToRefreshYalantis1.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/pulltorefresh/PullToRefreshYalantis1.kt -------------------------------------------------------------------------------- /common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/pulltorefresh/particlesystem/Particle.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/pulltorefresh/particlesystem/Particle.kt -------------------------------------------------------------------------------- /common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/pulltorefresh/particlesystem/StarParticleSystem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/pulltorefresh/particlesystem/StarParticleSystem.kt -------------------------------------------------------------------------------- /common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/learning/interactions/glow/GlowIndication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/learning/interactions/glow/GlowIndication.kt -------------------------------------------------------------------------------- /common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/learning/interactions/glow/GlowTheme.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/learning/interactions/glow/GlowTheme.kt -------------------------------------------------------------------------------- /common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/learning/interactions/scale/SpringIndication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/learning/interactions/scale/SpringIndication.kt -------------------------------------------------------------------------------- /common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/learning/interactions/scale/SpringTheme.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/learning/interactions/scale/SpringTheme.kt -------------------------------------------------------------------------------- /common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/learning/widget/FbSpringButton.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/learning/widget/FbSpringButton.kt -------------------------------------------------------------------------------- /common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/learning/widget/GlowingTextField.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/learning/widget/GlowingTextField.kt -------------------------------------------------------------------------------- /common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/theme/Color.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/theme/Color.kt -------------------------------------------------------------------------------- /common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/theme/Shape.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/theme/Shape.kt -------------------------------------------------------------------------------- /common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/theme/Theme.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/theme/Theme.kt -------------------------------------------------------------------------------- /common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/theme/Type.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/kotlin/dev/baseio/composeplayground/ui/theme/Type.kt -------------------------------------------------------------------------------- /common/src/commonMain/resources/images/activitymonitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/resources/images/activitymonitor.png -------------------------------------------------------------------------------- /common/src/commonMain/resources/images/airplane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/resources/images/airplane.png -------------------------------------------------------------------------------- /common/src/commonMain/resources/images/airportutility.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/resources/images/airportutility.png -------------------------------------------------------------------------------- /common/src/commonMain/resources/images/applewall.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/resources/images/applewall.jpeg -------------------------------------------------------------------------------- /common/src/commonMain/resources/images/appstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/resources/images/appstore.png -------------------------------------------------------------------------------- /common/src/commonMain/resources/images/automator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/resources/images/automator.png -------------------------------------------------------------------------------- /common/src/commonMain/resources/images/avatarshadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/resources/images/avatarshadow.png -------------------------------------------------------------------------------- /common/src/commonMain/resources/images/background.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/resources/images/background.jpeg -------------------------------------------------------------------------------- /common/src/commonMain/resources/images/bluetoothfile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/resources/images/bluetoothfile.png -------------------------------------------------------------------------------- /common/src/commonMain/resources/images/books.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/resources/images/books.png -------------------------------------------------------------------------------- /common/src/commonMain/resources/images/bootcamp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/resources/images/bootcamp.png -------------------------------------------------------------------------------- /common/src/commonMain/resources/images/calculator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/resources/images/calculator.png -------------------------------------------------------------------------------- /common/src/commonMain/resources/images/calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/resources/images/calendar.png -------------------------------------------------------------------------------- /common/src/commonMain/resources/images/chess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/resources/images/chess.png -------------------------------------------------------------------------------- /common/src/commonMain/resources/images/clouds_center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/resources/images/clouds_center.png -------------------------------------------------------------------------------- /common/src/commonMain/resources/images/clouds_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/resources/images/clouds_left.png -------------------------------------------------------------------------------- /common/src/commonMain/resources/images/clouds_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/resources/images/clouds_right.png -------------------------------------------------------------------------------- /common/src/commonMain/resources/images/colormeter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/resources/images/colormeter.png -------------------------------------------------------------------------------- /common/src/commonMain/resources/images/colorsync.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/resources/images/colorsync.png -------------------------------------------------------------------------------- /common/src/commonMain/resources/images/console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/resources/images/console.png -------------------------------------------------------------------------------- /common/src/commonMain/resources/images/contacts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/resources/images/contacts.png -------------------------------------------------------------------------------- /common/src/commonMain/resources/images/deserthome1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/resources/images/deserthome1.png -------------------------------------------------------------------------------- /common/src/commonMain/resources/images/desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/resources/images/desktop.png -------------------------------------------------------------------------------- /common/src/commonMain/resources/images/dictionary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/resources/images/dictionary.png -------------------------------------------------------------------------------- /common/src/commonMain/resources/images/diskutility.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/resources/images/diskutility.png -------------------------------------------------------------------------------- /common/src/commonMain/resources/images/facetime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/resources/images/facetime.png -------------------------------------------------------------------------------- /common/src/commonMain/resources/images/feedbackassistant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/resources/images/feedbackassistant.png -------------------------------------------------------------------------------- /common/src/commonMain/resources/images/findmy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/resources/images/findmy.png -------------------------------------------------------------------------------- /common/src/commonMain/resources/images/fontbook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/resources/images/fontbook.png -------------------------------------------------------------------------------- /common/src/commonMain/resources/images/githubavatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/resources/images/githubavatar.png -------------------------------------------------------------------------------- /common/src/commonMain/resources/images/grapher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/resources/images/grapher.png -------------------------------------------------------------------------------- /common/src/commonMain/resources/images/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/resources/images/home.png -------------------------------------------------------------------------------- /common/src/commonMain/resources/images/ic_alarm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/resources/images/ic_alarm.xml -------------------------------------------------------------------------------- /common/src/commonMain/resources/images/ic_bed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/resources/images/ic_bed.xml -------------------------------------------------------------------------------- /common/src/commonMain/resources/images/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/resources/images/ic_launcher_background.xml -------------------------------------------------------------------------------- /common/src/commonMain/resources/images/ic_notification_bell.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/resources/images/ic_notification_bell.xml -------------------------------------------------------------------------------- /common/src/commonMain/resources/images/ic_sun.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/resources/images/ic_sun.xml -------------------------------------------------------------------------------- /common/src/commonMain/resources/images/ic_thumb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/resources/images/ic_thumb.xml -------------------------------------------------------------------------------- /common/src/commonMain/resources/images/imagecapture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/resources/images/imagecapture.png -------------------------------------------------------------------------------- /common/src/commonMain/resources/images/keychain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/resources/images/keychain.png -------------------------------------------------------------------------------- /common/src/commonMain/resources/images/launchpad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/resources/images/launchpad.png -------------------------------------------------------------------------------- /common/src/commonMain/resources/images/mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/resources/images/mail.png -------------------------------------------------------------------------------- /common/src/commonMain/resources/images/maps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/resources/images/maps.png -------------------------------------------------------------------------------- /common/src/commonMain/resources/images/messages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/resources/images/messages.png -------------------------------------------------------------------------------- /common/src/commonMain/resources/images/midi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/resources/images/midi.png -------------------------------------------------------------------------------- /common/src/commonMain/resources/images/migration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/resources/images/migration.png -------------------------------------------------------------------------------- /common/src/commonMain/resources/images/missioncontrol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/resources/images/missioncontrol.png -------------------------------------------------------------------------------- /common/src/commonMain/resources/images/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/resources/images/music.png -------------------------------------------------------------------------------- /common/src/commonMain/resources/images/network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/resources/images/network.png -------------------------------------------------------------------------------- /common/src/commonMain/resources/images/news.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/resources/images/news.png -------------------------------------------------------------------------------- /common/src/commonMain/resources/images/notes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/resources/images/notes.png -------------------------------------------------------------------------------- /common/src/commonMain/resources/images/notfound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/resources/images/notfound.png -------------------------------------------------------------------------------- /common/src/commonMain/resources/images/photobooth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/resources/images/photobooth.png -------------------------------------------------------------------------------- /common/src/commonMain/resources/images/photos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/resources/images/photos.png -------------------------------------------------------------------------------- /common/src/commonMain/resources/images/podcasts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/resources/images/podcasts.png -------------------------------------------------------------------------------- /common/src/commonMain/resources/images/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/resources/images/preview.png -------------------------------------------------------------------------------- /common/src/commonMain/resources/images/quicktime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/resources/images/quicktime.png -------------------------------------------------------------------------------- /common/src/commonMain/resources/images/reminders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/resources/images/reminders.png -------------------------------------------------------------------------------- /common/src/commonMain/resources/images/safari.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/resources/images/safari.png -------------------------------------------------------------------------------- /common/src/commonMain/resources/images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/resources/images/screenshot.png -------------------------------------------------------------------------------- /common/src/commonMain/resources/images/screentime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/resources/images/screentime.png -------------------------------------------------------------------------------- /common/src/commonMain/resources/images/scripteditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/resources/images/scripteditor.png -------------------------------------------------------------------------------- /common/src/commonMain/resources/images/siri.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/resources/images/siri.png -------------------------------------------------------------------------------- /common/src/commonMain/resources/images/sound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/resources/images/sound.png -------------------------------------------------------------------------------- /common/src/commonMain/resources/images/spaceship.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/resources/images/spaceship.png -------------------------------------------------------------------------------- /common/src/commonMain/resources/images/spshipshadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/resources/images/spshipshadow.png -------------------------------------------------------------------------------- /common/src/commonMain/resources/images/stickies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/resources/images/stickies.png -------------------------------------------------------------------------------- /common/src/commonMain/resources/images/stocks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/resources/images/stocks.png -------------------------------------------------------------------------------- /common/src/commonMain/resources/images/systeminfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/resources/images/systeminfo.png -------------------------------------------------------------------------------- /common/src/commonMain/resources/images/systempreferences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/resources/images/systempreferences.png -------------------------------------------------------------------------------- /common/src/commonMain/resources/images/terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/resources/images/terminal.png -------------------------------------------------------------------------------- /common/src/commonMain/resources/images/textedit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/resources/images/textedit.png -------------------------------------------------------------------------------- /common/src/commonMain/resources/images/timemachine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/resources/images/timemachine.png -------------------------------------------------------------------------------- /common/src/commonMain/resources/images/tv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/resources/images/tv.png -------------------------------------------------------------------------------- /common/src/commonMain/resources/images/twitter_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/resources/images/twitter_icon.xml -------------------------------------------------------------------------------- /common/src/commonMain/resources/images/update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/resources/images/update.png -------------------------------------------------------------------------------- /common/src/commonMain/resources/images/voicememos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/resources/images/voicememos.png -------------------------------------------------------------------------------- /common/src/commonMain/resources/images/voiceover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/commonMain/resources/images/voiceover.png -------------------------------------------------------------------------------- /common/src/desktopMain/kotlin/dev/baseio/common/DesktopApp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/desktopMain/kotlin/dev/baseio/common/DesktopApp.kt -------------------------------------------------------------------------------- /common/src/desktopMain/kotlin/dev/baseio/common/PainterRes.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/desktopMain/kotlin/dev/baseio/common/PainterRes.kt -------------------------------------------------------------------------------- /common/src/desktopMain/kotlin/dev/baseio/common/platform.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/desktopMain/kotlin/dev/baseio/common/platform.kt -------------------------------------------------------------------------------- /common/src/desktopMain/kotlin/dev/baseio/composeplayground/contributors/NetworkImageBox.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/desktopMain/kotlin/dev/baseio/composeplayground/contributors/NetworkImageBox.kt -------------------------------------------------------------------------------- /common/src/desktopMain/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/desktopModifier.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/desktopMain/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/desktopModifier.kt -------------------------------------------------------------------------------- /common/src/desktopMain/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/drawText.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/desktopMain/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/drawText.kt -------------------------------------------------------------------------------- /common/src/iosArm64Main/kotlin/dev/baseio/common/PainterRes.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/iosArm64Main/kotlin/dev/baseio/common/PainterRes.kt -------------------------------------------------------------------------------- /common/src/iosArm64Main/kotlin/dev/baseio/common/getPlatformName.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/iosArm64Main/kotlin/dev/baseio/common/getPlatformName.kt -------------------------------------------------------------------------------- /common/src/iosArm64Main/kotlin/dev/baseio/composeplayground/contributors/NetworkImageBox.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/iosArm64Main/kotlin/dev/baseio/composeplayground/contributors/NetworkImageBox.kt -------------------------------------------------------------------------------- /common/src/iosArm64Main/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/desktopModifier.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/iosArm64Main/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/desktopModifier.kt -------------------------------------------------------------------------------- /common/src/iosArm64Main/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/drawText.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/iosArm64Main/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/drawText.kt -------------------------------------------------------------------------------- /common/src/iosSimulatorArm64Main/kotlin/dev/baseio/common/PainterRes.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/iosSimulatorArm64Main/kotlin/dev/baseio/common/PainterRes.kt -------------------------------------------------------------------------------- /common/src/iosSimulatorArm64Main/kotlin/dev/baseio/common/getPlatformName.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/iosSimulatorArm64Main/kotlin/dev/baseio/common/getPlatformName.kt -------------------------------------------------------------------------------- /common/src/iosSimulatorArm64Main/kotlin/dev/baseio/composeplayground/contributors/NetworkImageBox.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/iosSimulatorArm64Main/kotlin/dev/baseio/composeplayground/contributors/NetworkImageBox.kt -------------------------------------------------------------------------------- /common/src/iosSimulatorArm64Main/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/desktopModifier.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/iosSimulatorArm64Main/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/desktopModifier.kt -------------------------------------------------------------------------------- /common/src/iosSimulatorArm64Main/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/drawText.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/iosSimulatorArm64Main/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/drawText.kt -------------------------------------------------------------------------------- /common/src/iosX64Main/kotlin/dev/baseio/common/PainterRes.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/iosX64Main/kotlin/dev/baseio/common/PainterRes.kt -------------------------------------------------------------------------------- /common/src/iosX64Main/kotlin/dev/baseio/common/getPlatformName.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/iosX64Main/kotlin/dev/baseio/common/getPlatformName.kt -------------------------------------------------------------------------------- /common/src/iosX64Main/kotlin/dev/baseio/composeplayground/contributors/NetworkImageBox.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/iosX64Main/kotlin/dev/baseio/composeplayground/contributors/NetworkImageBox.kt -------------------------------------------------------------------------------- /common/src/iosX64Main/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/desktopModifier.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/iosX64Main/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/desktopModifier.kt -------------------------------------------------------------------------------- /common/src/iosX64Main/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/drawText.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/iosX64Main/kotlin/dev/baseio/composeplayground/ui/animations/anmolverma/drawText.kt -------------------------------------------------------------------------------- /common/src/main/res/drawable-hdpi/airplane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/drawable-hdpi/airplane.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-hdpi/clouds_center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/drawable-hdpi/clouds_center.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-hdpi/clouds_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/drawable-hdpi/clouds_left.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-hdpi/clouds_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/drawable-hdpi/clouds_right.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-mdpi/airplane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/drawable-mdpi/airplane.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-mdpi/clouds_center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/drawable-mdpi/clouds_center.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-mdpi/clouds_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/drawable-mdpi/clouds_left.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-mdpi/clouds_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/drawable-mdpi/clouds_right.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /common/src/main/res/drawable-xhdpi/airplane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/drawable-xhdpi/airplane.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xhdpi/clouds_center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/drawable-xhdpi/clouds_center.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xhdpi/clouds_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/drawable-xhdpi/clouds_left.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xhdpi/clouds_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/drawable-xhdpi/clouds_right.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxhdpi/airplane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/drawable-xxhdpi/airplane.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxhdpi/clouds_center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/drawable-xxhdpi/clouds_center.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxhdpi/clouds_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/drawable-xxhdpi/clouds_left.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxhdpi/clouds_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/drawable-xxhdpi/clouds_right.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxxhdpi/activitymonitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/drawable-xxxhdpi/activitymonitor.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxxhdpi/airplane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/drawable-xxxhdpi/airplane.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxxhdpi/airportutility.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/drawable-xxxhdpi/airportutility.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxxhdpi/applewall.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/drawable-xxxhdpi/applewall.jpeg -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxxhdpi/appstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/drawable-xxxhdpi/appstore.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxxhdpi/automator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/drawable-xxxhdpi/automator.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxxhdpi/avatarshadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/drawable-xxxhdpi/avatarshadow.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxxhdpi/background.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/drawable-xxxhdpi/background.jpeg -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxxhdpi/bluetoothfile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/drawable-xxxhdpi/bluetoothfile.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxxhdpi/books.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/drawable-xxxhdpi/books.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxxhdpi/bootcamp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/drawable-xxxhdpi/bootcamp.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxxhdpi/calculator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/drawable-xxxhdpi/calculator.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxxhdpi/calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/drawable-xxxhdpi/calendar.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxxhdpi/chess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/drawable-xxxhdpi/chess.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxxhdpi/clouds_center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/drawable-xxxhdpi/clouds_center.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxxhdpi/clouds_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/drawable-xxxhdpi/clouds_left.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxxhdpi/clouds_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/drawable-xxxhdpi/clouds_right.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxxhdpi/colormeter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/drawable-xxxhdpi/colormeter.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxxhdpi/colorsync.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/drawable-xxxhdpi/colorsync.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxxhdpi/console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/drawable-xxxhdpi/console.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxxhdpi/contacts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/drawable-xxxhdpi/contacts.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxxhdpi/deserthome1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/drawable-xxxhdpi/deserthome1.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxxhdpi/desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/drawable-xxxhdpi/desktop.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxxhdpi/dictionary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/drawable-xxxhdpi/dictionary.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxxhdpi/diskutility.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/drawable-xxxhdpi/diskutility.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxxhdpi/facetime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/drawable-xxxhdpi/facetime.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxxhdpi/feedbackassistant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/drawable-xxxhdpi/feedbackassistant.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxxhdpi/findmy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/drawable-xxxhdpi/findmy.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxxhdpi/fontbook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/drawable-xxxhdpi/fontbook.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxxhdpi/githubavatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/drawable-xxxhdpi/githubavatar.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxxhdpi/grapher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/drawable-xxxhdpi/grapher.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxxhdpi/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/drawable-xxxhdpi/home.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxxhdpi/imagecapture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/drawable-xxxhdpi/imagecapture.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxxhdpi/keychain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/drawable-xxxhdpi/keychain.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxxhdpi/launchpad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/drawable-xxxhdpi/launchpad.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxxhdpi/mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/drawable-xxxhdpi/mail.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxxhdpi/maps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/drawable-xxxhdpi/maps.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxxhdpi/messages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/drawable-xxxhdpi/messages.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxxhdpi/midi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/drawable-xxxhdpi/midi.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxxhdpi/migration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/drawable-xxxhdpi/migration.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxxhdpi/missioncontrol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/drawable-xxxhdpi/missioncontrol.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxxhdpi/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/drawable-xxxhdpi/music.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxxhdpi/network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/drawable-xxxhdpi/network.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxxhdpi/news.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/drawable-xxxhdpi/news.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxxhdpi/notes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/drawable-xxxhdpi/notes.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxxhdpi/notfound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/drawable-xxxhdpi/notfound.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxxhdpi/photobooth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/drawable-xxxhdpi/photobooth.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxxhdpi/photos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/drawable-xxxhdpi/photos.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxxhdpi/podcasts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/drawable-xxxhdpi/podcasts.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxxhdpi/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/drawable-xxxhdpi/preview.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxxhdpi/quicktime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/drawable-xxxhdpi/quicktime.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxxhdpi/reminders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/drawable-xxxhdpi/reminders.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxxhdpi/safari.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/drawable-xxxhdpi/safari.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxxhdpi/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/drawable-xxxhdpi/screenshot.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxxhdpi/screentime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/drawable-xxxhdpi/screentime.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxxhdpi/scripteditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/drawable-xxxhdpi/scripteditor.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxxhdpi/siri.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/drawable-xxxhdpi/siri.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxxhdpi/sound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/drawable-xxxhdpi/sound.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxxhdpi/spaceship.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/drawable-xxxhdpi/spaceship.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxxhdpi/spshipshadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/drawable-xxxhdpi/spshipshadow.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxxhdpi/stickies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/drawable-xxxhdpi/stickies.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxxhdpi/stocks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/drawable-xxxhdpi/stocks.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxxhdpi/systeminfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/drawable-xxxhdpi/systeminfo.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxxhdpi/systempreferences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/drawable-xxxhdpi/systempreferences.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxxhdpi/terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/drawable-xxxhdpi/terminal.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxxhdpi/textedit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/drawable-xxxhdpi/textedit.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxxhdpi/timemachine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/drawable-xxxhdpi/timemachine.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxxhdpi/tv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/drawable-xxxhdpi/tv.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxxhdpi/update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/drawable-xxxhdpi/update.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxxhdpi/voicememos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/drawable-xxxhdpi/voicememos.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxxhdpi/voiceover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/drawable-xxxhdpi/voiceover.png -------------------------------------------------------------------------------- /common/src/main/res/drawable/ic_alarm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/drawable/ic_alarm.xml -------------------------------------------------------------------------------- /common/src/main/res/drawable/ic_bed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/drawable/ic_bed.xml -------------------------------------------------------------------------------- /common/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /common/src/main/res/drawable/ic_notification_bell.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/drawable/ic_notification_bell.xml -------------------------------------------------------------------------------- /common/src/main/res/drawable/ic_sun.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/drawable/ic_sun.xml -------------------------------------------------------------------------------- /common/src/main/res/drawable/ic_thumb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/drawable/ic_thumb.xml -------------------------------------------------------------------------------- /common/src/main/res/drawable/twitter_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/drawable/twitter_icon.xml -------------------------------------------------------------------------------- /common/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /common/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /common/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /common/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /common/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /common/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /common/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /common/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /common/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /common/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /common/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /common/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /common/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /common/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /common/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/common/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /desktop/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/desktop/.gitignore -------------------------------------------------------------------------------- /desktop/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/desktop/build.gradle.kts -------------------------------------------------------------------------------- /desktop/src/jvmMain/kotlin/Main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/desktop/src/jvmMain/kotlin/Main.kt -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/gradlew.bat -------------------------------------------------------------------------------- /iOSApp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/iOSApp/.gitignore -------------------------------------------------------------------------------- /iOSApp/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/iOSApp/build.gradle.kts -------------------------------------------------------------------------------- /iOSApp/src/uikitMain/kotlin/main.uikit.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/iOSApp/src/uikitMain/kotlin/main.uikit.kt -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oianmol/ComposeAnimationsPlayground/HEAD/settings.gradle.kts --------------------------------------------------------------------------------