├── .gitignore ├── .idea ├── .gitignore ├── compiler.xml ├── deploymentTargetDropDown.xml ├── gradle.xml ├── inspectionProfiles │ └── Project_Default.xml ├── misc.xml └── vcs.xml ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── example │ │ └── playingwithmotionlayout │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── playingwithmotionlayout │ │ │ ├── MainActivity.kt │ │ │ ├── component │ │ │ └── components.kt │ │ │ └── ui │ │ │ └── theme │ │ │ ├── Color.kt │ │ │ ├── Shape.kt │ │ │ ├── Theme.kt │ │ │ └── Type.kt │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ ├── compose_icon.png │ │ ├── design.png │ │ ├── ic_launcher_background.xml │ │ └── pic.jpg │ │ ├── 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 │ │ ├── raw │ │ └── motion_scene.json5 │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── themes.xml │ └── test │ └── java │ └── com │ └── example │ └── playingwithmotionlayout │ └── ExampleUnitTest.kt ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astroa7m/collapsible-app-bar/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astroa7m/collapsible-app-bar/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/deploymentTargetDropDown.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astroa7m/collapsible-app-bar/HEAD/.idea/deploymentTargetDropDown.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astroa7m/collapsible-app-bar/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astroa7m/collapsible-app-bar/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astroa7m/collapsible-app-bar/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astroa7m/collapsible-app-bar/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astroa7m/collapsible-app-bar/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astroa7m/collapsible-app-bar/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astroa7m/collapsible-app-bar/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/example/playingwithmotionlayout/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astroa7m/collapsible-app-bar/HEAD/app/src/androidTest/java/com/example/playingwithmotionlayout/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astroa7m/collapsible-app-bar/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/example/playingwithmotionlayout/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astroa7m/collapsible-app-bar/HEAD/app/src/main/java/com/example/playingwithmotionlayout/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/example/playingwithmotionlayout/component/components.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astroa7m/collapsible-app-bar/HEAD/app/src/main/java/com/example/playingwithmotionlayout/component/components.kt -------------------------------------------------------------------------------- /app/src/main/java/com/example/playingwithmotionlayout/ui/theme/Color.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astroa7m/collapsible-app-bar/HEAD/app/src/main/java/com/example/playingwithmotionlayout/ui/theme/Color.kt -------------------------------------------------------------------------------- /app/src/main/java/com/example/playingwithmotionlayout/ui/theme/Shape.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astroa7m/collapsible-app-bar/HEAD/app/src/main/java/com/example/playingwithmotionlayout/ui/theme/Shape.kt -------------------------------------------------------------------------------- /app/src/main/java/com/example/playingwithmotionlayout/ui/theme/Theme.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astroa7m/collapsible-app-bar/HEAD/app/src/main/java/com/example/playingwithmotionlayout/ui/theme/Theme.kt -------------------------------------------------------------------------------- /app/src/main/java/com/example/playingwithmotionlayout/ui/theme/Type.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astroa7m/collapsible-app-bar/HEAD/app/src/main/java/com/example/playingwithmotionlayout/ui/theme/Type.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astroa7m/collapsible-app-bar/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/compose_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astroa7m/collapsible-app-bar/HEAD/app/src/main/res/drawable/compose_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/design.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astroa7m/collapsible-app-bar/HEAD/app/src/main/res/drawable/design.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astroa7m/collapsible-app-bar/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/pic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astroa7m/collapsible-app-bar/HEAD/app/src/main/res/drawable/pic.jpg -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astroa7m/collapsible-app-bar/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astroa7m/collapsible-app-bar/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astroa7m/collapsible-app-bar/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astroa7m/collapsible-app-bar/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astroa7m/collapsible-app-bar/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astroa7m/collapsible-app-bar/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astroa7m/collapsible-app-bar/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astroa7m/collapsible-app-bar/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astroa7m/collapsible-app-bar/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astroa7m/collapsible-app-bar/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astroa7m/collapsible-app-bar/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astroa7m/collapsible-app-bar/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/raw/motion_scene.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astroa7m/collapsible-app-bar/HEAD/app/src/main/res/raw/motion_scene.json5 -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astroa7m/collapsible-app-bar/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astroa7m/collapsible-app-bar/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astroa7m/collapsible-app-bar/HEAD/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /app/src/test/java/com/example/playingwithmotionlayout/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astroa7m/collapsible-app-bar/HEAD/app/src/test/java/com/example/playingwithmotionlayout/ExampleUnitTest.kt -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astroa7m/collapsible-app-bar/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astroa7m/collapsible-app-bar/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astroa7m/collapsible-app-bar/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astroa7m/collapsible-app-bar/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astroa7m/collapsible-app-bar/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astroa7m/collapsible-app-bar/HEAD/settings.gradle --------------------------------------------------------------------------------