├── .gitignore ├── .idea ├── .gitignore ├── .name ├── compiler.xml ├── deploymentTargetDropDown.xml ├── gradle.xml ├── inspectionProfiles │ └── Project_Default.xml └── misc.xml ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── mohamedbenrejeb │ │ └── youtubecomposemotionlayout │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── mohamedbenrejeb │ │ │ └── youtubecomposemotionlayout │ │ │ ├── MainActivity.kt │ │ │ ├── model │ │ │ └── VideoUiState.kt │ │ │ ├── screens │ │ │ ├── components │ │ │ │ ├── VideoColumn.kt │ │ │ │ ├── VideoFullDetails.kt │ │ │ │ ├── VideoItem.kt │ │ │ │ ├── VideoItemDetails.kt │ │ │ │ └── VideoItemThumbnail.kt │ │ │ └── home │ │ │ │ ├── HomeScreen.kt │ │ │ │ └── MyNavigationBar.kt │ │ │ └── ui │ │ │ └── theme │ │ │ ├── Color.kt │ │ │ ├── Theme.kt │ │ │ └── Type.kt │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ ├── ic_launcher_background.xml │ │ ├── image1.jpeg │ │ ├── image2.jpeg │ │ ├── image3.jpeg │ │ ├── image4.jpeg │ │ ├── image5.jpeg │ │ └── image6.jpeg │ │ ├── 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 │ │ └── xml │ │ ├── backup_rules.xml │ │ └── data_extraction_rules.xml │ └── test │ └── java │ └── com │ └── mohamedbenrejeb │ └── youtubecomposemotionlayout │ └── ExampleUnitTest.kt ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohamedRejeb/Compose-Youtube-Motion-Layout/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | Youtube compose motion layout -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohamedRejeb/Compose-Youtube-Motion-Layout/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/deploymentTargetDropDown.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohamedRejeb/Compose-Youtube-Motion-Layout/HEAD/.idea/deploymentTargetDropDown.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohamedRejeb/Compose-Youtube-Motion-Layout/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohamedRejeb/Compose-Youtube-Motion-Layout/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohamedRejeb/Compose-Youtube-Motion-Layout/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohamedRejeb/Compose-Youtube-Motion-Layout/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohamedRejeb/Compose-Youtube-Motion-Layout/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohamedRejeb/Compose-Youtube-Motion-Layout/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/mohamedbenrejeb/youtubecomposemotionlayout/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohamedRejeb/Compose-Youtube-Motion-Layout/HEAD/app/src/androidTest/java/com/mohamedbenrejeb/youtubecomposemotionlayout/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohamedRejeb/Compose-Youtube-Motion-Layout/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/mohamedbenrejeb/youtubecomposemotionlayout/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohamedRejeb/Compose-Youtube-Motion-Layout/HEAD/app/src/main/java/com/mohamedbenrejeb/youtubecomposemotionlayout/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/mohamedbenrejeb/youtubecomposemotionlayout/model/VideoUiState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohamedRejeb/Compose-Youtube-Motion-Layout/HEAD/app/src/main/java/com/mohamedbenrejeb/youtubecomposemotionlayout/model/VideoUiState.kt -------------------------------------------------------------------------------- /app/src/main/java/com/mohamedbenrejeb/youtubecomposemotionlayout/screens/components/VideoColumn.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohamedRejeb/Compose-Youtube-Motion-Layout/HEAD/app/src/main/java/com/mohamedbenrejeb/youtubecomposemotionlayout/screens/components/VideoColumn.kt -------------------------------------------------------------------------------- /app/src/main/java/com/mohamedbenrejeb/youtubecomposemotionlayout/screens/components/VideoFullDetails.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohamedRejeb/Compose-Youtube-Motion-Layout/HEAD/app/src/main/java/com/mohamedbenrejeb/youtubecomposemotionlayout/screens/components/VideoFullDetails.kt -------------------------------------------------------------------------------- /app/src/main/java/com/mohamedbenrejeb/youtubecomposemotionlayout/screens/components/VideoItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohamedRejeb/Compose-Youtube-Motion-Layout/HEAD/app/src/main/java/com/mohamedbenrejeb/youtubecomposemotionlayout/screens/components/VideoItem.kt -------------------------------------------------------------------------------- /app/src/main/java/com/mohamedbenrejeb/youtubecomposemotionlayout/screens/components/VideoItemDetails.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohamedRejeb/Compose-Youtube-Motion-Layout/HEAD/app/src/main/java/com/mohamedbenrejeb/youtubecomposemotionlayout/screens/components/VideoItemDetails.kt -------------------------------------------------------------------------------- /app/src/main/java/com/mohamedbenrejeb/youtubecomposemotionlayout/screens/components/VideoItemThumbnail.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohamedRejeb/Compose-Youtube-Motion-Layout/HEAD/app/src/main/java/com/mohamedbenrejeb/youtubecomposemotionlayout/screens/components/VideoItemThumbnail.kt -------------------------------------------------------------------------------- /app/src/main/java/com/mohamedbenrejeb/youtubecomposemotionlayout/screens/home/HomeScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohamedRejeb/Compose-Youtube-Motion-Layout/HEAD/app/src/main/java/com/mohamedbenrejeb/youtubecomposemotionlayout/screens/home/HomeScreen.kt -------------------------------------------------------------------------------- /app/src/main/java/com/mohamedbenrejeb/youtubecomposemotionlayout/screens/home/MyNavigationBar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohamedRejeb/Compose-Youtube-Motion-Layout/HEAD/app/src/main/java/com/mohamedbenrejeb/youtubecomposemotionlayout/screens/home/MyNavigationBar.kt -------------------------------------------------------------------------------- /app/src/main/java/com/mohamedbenrejeb/youtubecomposemotionlayout/ui/theme/Color.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohamedRejeb/Compose-Youtube-Motion-Layout/HEAD/app/src/main/java/com/mohamedbenrejeb/youtubecomposemotionlayout/ui/theme/Color.kt -------------------------------------------------------------------------------- /app/src/main/java/com/mohamedbenrejeb/youtubecomposemotionlayout/ui/theme/Theme.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohamedRejeb/Compose-Youtube-Motion-Layout/HEAD/app/src/main/java/com/mohamedbenrejeb/youtubecomposemotionlayout/ui/theme/Theme.kt -------------------------------------------------------------------------------- /app/src/main/java/com/mohamedbenrejeb/youtubecomposemotionlayout/ui/theme/Type.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohamedRejeb/Compose-Youtube-Motion-Layout/HEAD/app/src/main/java/com/mohamedbenrejeb/youtubecomposemotionlayout/ui/theme/Type.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohamedRejeb/Compose-Youtube-Motion-Layout/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohamedRejeb/Compose-Youtube-Motion-Layout/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/image1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohamedRejeb/Compose-Youtube-Motion-Layout/HEAD/app/src/main/res/drawable/image1.jpeg -------------------------------------------------------------------------------- /app/src/main/res/drawable/image2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohamedRejeb/Compose-Youtube-Motion-Layout/HEAD/app/src/main/res/drawable/image2.jpeg -------------------------------------------------------------------------------- /app/src/main/res/drawable/image3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohamedRejeb/Compose-Youtube-Motion-Layout/HEAD/app/src/main/res/drawable/image3.jpeg -------------------------------------------------------------------------------- /app/src/main/res/drawable/image4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohamedRejeb/Compose-Youtube-Motion-Layout/HEAD/app/src/main/res/drawable/image4.jpeg -------------------------------------------------------------------------------- /app/src/main/res/drawable/image5.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohamedRejeb/Compose-Youtube-Motion-Layout/HEAD/app/src/main/res/drawable/image5.jpeg -------------------------------------------------------------------------------- /app/src/main/res/drawable/image6.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohamedRejeb/Compose-Youtube-Motion-Layout/HEAD/app/src/main/res/drawable/image6.jpeg -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohamedRejeb/Compose-Youtube-Motion-Layout/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/MohamedRejeb/Compose-Youtube-Motion-Layout/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/MohamedRejeb/Compose-Youtube-Motion-Layout/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohamedRejeb/Compose-Youtube-Motion-Layout/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohamedRejeb/Compose-Youtube-Motion-Layout/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohamedRejeb/Compose-Youtube-Motion-Layout/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohamedRejeb/Compose-Youtube-Motion-Layout/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohamedRejeb/Compose-Youtube-Motion-Layout/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohamedRejeb/Compose-Youtube-Motion-Layout/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohamedRejeb/Compose-Youtube-Motion-Layout/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohamedRejeb/Compose-Youtube-Motion-Layout/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohamedRejeb/Compose-Youtube-Motion-Layout/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/raw/motion_scene.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohamedRejeb/Compose-Youtube-Motion-Layout/HEAD/app/src/main/res/raw/motion_scene.json5 -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohamedRejeb/Compose-Youtube-Motion-Layout/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohamedRejeb/Compose-Youtube-Motion-Layout/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohamedRejeb/Compose-Youtube-Motion-Layout/HEAD/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohamedRejeb/Compose-Youtube-Motion-Layout/HEAD/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohamedRejeb/Compose-Youtube-Motion-Layout/HEAD/app/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /app/src/test/java/com/mohamedbenrejeb/youtubecomposemotionlayout/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohamedRejeb/Compose-Youtube-Motion-Layout/HEAD/app/src/test/java/com/mohamedbenrejeb/youtubecomposemotionlayout/ExampleUnitTest.kt -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohamedRejeb/Compose-Youtube-Motion-Layout/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohamedRejeb/Compose-Youtube-Motion-Layout/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohamedRejeb/Compose-Youtube-Motion-Layout/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohamedRejeb/Compose-Youtube-Motion-Layout/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohamedRejeb/Compose-Youtube-Motion-Layout/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohamedRejeb/Compose-Youtube-Motion-Layout/HEAD/settings.gradle --------------------------------------------------------------------------------