├── .editorconfig ├── .gitignore ├── ComposeShadowsPlus ├── .gitignore ├── build.gradle.kts ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ └── kotlin │ └── com │ └── gigamole │ └── composeshadowsplus │ ├── common │ ├── ShadowsPlusDefaults.kt │ ├── ShadowsPlusType.kt │ └── ShadowsPlusUtils.kt │ ├── elevation │ ├── AlphaContentElevationShadow.kt │ └── ElevationShadowDefaults.kt │ ├── rsblur │ ├── RSBlurShadow.kt │ └── RSBlurShadowDefaults.kt │ └── softlayer │ ├── SoftLayerShadow.kt │ └── SoftLayerShadowContainer.kt ├── LICENSE.txt ├── README.md ├── app ├── .gitignore ├── build.gradle.kts ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── ic_launcher-playstore.png │ ├── kotlin │ └── com │ │ └── gigamole │ │ └── composeshadowsplus │ │ └── sample │ │ ├── MainActivity.kt │ │ ├── MainApplication.kt │ │ └── MainTheme.kt │ └── res │ ├── drawable-v24 │ └── ic_launcher_foreground.xml │ ├── drawable │ └── img_alpha.png │ ├── font │ ├── opensans_regular.ttf │ └── space_grotesk_bold.ttf │ ├── mipmap-anydpi-v26 │ ├── ic_launcher.xml │ └── ic_launcher_round.xml │ ├── mipmap-hdpi │ ├── ic_launcher.webp │ ├── ic_launcher_foreground.webp │ └── ic_launcher_round.webp │ ├── mipmap-mdpi │ ├── ic_launcher.webp │ ├── ic_launcher_foreground.webp │ └── ic_launcher_round.webp │ ├── mipmap-xhdpi │ ├── ic_launcher.webp │ ├── ic_launcher_foreground.webp │ └── ic_launcher_round.webp │ ├── mipmap-xxhdpi │ ├── ic_launcher.webp │ ├── ic_launcher_foreground.webp │ └── ic_launcher_round.webp │ ├── mipmap-xxxhdpi │ ├── ic_launcher.webp │ ├── ic_launcher_foreground.webp │ └── ic_launcher_round.webp │ └── values │ ├── ic_launcher_background.xml │ ├── strings.xml │ └── themes.xml ├── gradle.properties ├── gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── jitpack.yml ├── media ├── alpha_content.gif ├── credits.png ├── demo.gif ├── demo_img.png ├── elevation.gif ├── footer.png ├── header.png ├── rs_blur.gif └── soft_layer.gif ├── plugins ├── .gitignore ├── build.gradle.kts ├── settings.gradle.kts └── src │ └── main │ └── java │ ├── CommonExtension.kt │ ├── ProjectConfig.kt │ ├── composeshadowsplus.application.gradle.kts │ └── composeshadowsplus.library.gradle.kts └── settings.gradle.kts /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GIGAMOLE/ComposeShadowsPlus/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GIGAMOLE/ComposeShadowsPlus/HEAD/.gitignore -------------------------------------------------------------------------------- /ComposeShadowsPlus/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /ComposeShadowsPlus/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GIGAMOLE/ComposeShadowsPlus/HEAD/ComposeShadowsPlus/build.gradle.kts -------------------------------------------------------------------------------- /ComposeShadowsPlus/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GIGAMOLE/ComposeShadowsPlus/HEAD/ComposeShadowsPlus/proguard-rules.pro -------------------------------------------------------------------------------- /ComposeShadowsPlus/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ComposeShadowsPlus/src/main/kotlin/com/gigamole/composeshadowsplus/common/ShadowsPlusDefaults.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GIGAMOLE/ComposeShadowsPlus/HEAD/ComposeShadowsPlus/src/main/kotlin/com/gigamole/composeshadowsplus/common/ShadowsPlusDefaults.kt -------------------------------------------------------------------------------- /ComposeShadowsPlus/src/main/kotlin/com/gigamole/composeshadowsplus/common/ShadowsPlusType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GIGAMOLE/ComposeShadowsPlus/HEAD/ComposeShadowsPlus/src/main/kotlin/com/gigamole/composeshadowsplus/common/ShadowsPlusType.kt -------------------------------------------------------------------------------- /ComposeShadowsPlus/src/main/kotlin/com/gigamole/composeshadowsplus/common/ShadowsPlusUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GIGAMOLE/ComposeShadowsPlus/HEAD/ComposeShadowsPlus/src/main/kotlin/com/gigamole/composeshadowsplus/common/ShadowsPlusUtils.kt -------------------------------------------------------------------------------- /ComposeShadowsPlus/src/main/kotlin/com/gigamole/composeshadowsplus/elevation/AlphaContentElevationShadow.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GIGAMOLE/ComposeShadowsPlus/HEAD/ComposeShadowsPlus/src/main/kotlin/com/gigamole/composeshadowsplus/elevation/AlphaContentElevationShadow.kt -------------------------------------------------------------------------------- /ComposeShadowsPlus/src/main/kotlin/com/gigamole/composeshadowsplus/elevation/ElevationShadowDefaults.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GIGAMOLE/ComposeShadowsPlus/HEAD/ComposeShadowsPlus/src/main/kotlin/com/gigamole/composeshadowsplus/elevation/ElevationShadowDefaults.kt -------------------------------------------------------------------------------- /ComposeShadowsPlus/src/main/kotlin/com/gigamole/composeshadowsplus/rsblur/RSBlurShadow.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GIGAMOLE/ComposeShadowsPlus/HEAD/ComposeShadowsPlus/src/main/kotlin/com/gigamole/composeshadowsplus/rsblur/RSBlurShadow.kt -------------------------------------------------------------------------------- /ComposeShadowsPlus/src/main/kotlin/com/gigamole/composeshadowsplus/rsblur/RSBlurShadowDefaults.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GIGAMOLE/ComposeShadowsPlus/HEAD/ComposeShadowsPlus/src/main/kotlin/com/gigamole/composeshadowsplus/rsblur/RSBlurShadowDefaults.kt -------------------------------------------------------------------------------- /ComposeShadowsPlus/src/main/kotlin/com/gigamole/composeshadowsplus/softlayer/SoftLayerShadow.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GIGAMOLE/ComposeShadowsPlus/HEAD/ComposeShadowsPlus/src/main/kotlin/com/gigamole/composeshadowsplus/softlayer/SoftLayerShadow.kt -------------------------------------------------------------------------------- /ComposeShadowsPlus/src/main/kotlin/com/gigamole/composeshadowsplus/softlayer/SoftLayerShadowContainer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GIGAMOLE/ComposeShadowsPlus/HEAD/ComposeShadowsPlus/src/main/kotlin/com/gigamole/composeshadowsplus/softlayer/SoftLayerShadowContainer.kt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GIGAMOLE/ComposeShadowsPlus/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GIGAMOLE/ComposeShadowsPlus/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GIGAMOLE/ComposeShadowsPlus/HEAD/app/build.gradle.kts -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GIGAMOLE/ComposeShadowsPlus/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GIGAMOLE/ComposeShadowsPlus/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GIGAMOLE/ComposeShadowsPlus/HEAD/app/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /app/src/main/kotlin/com/gigamole/composeshadowsplus/sample/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GIGAMOLE/ComposeShadowsPlus/HEAD/app/src/main/kotlin/com/gigamole/composeshadowsplus/sample/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/gigamole/composeshadowsplus/sample/MainApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GIGAMOLE/ComposeShadowsPlus/HEAD/app/src/main/kotlin/com/gigamole/composeshadowsplus/sample/MainApplication.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/gigamole/composeshadowsplus/sample/MainTheme.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GIGAMOLE/ComposeShadowsPlus/HEAD/app/src/main/kotlin/com/gigamole/composeshadowsplus/sample/MainTheme.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GIGAMOLE/ComposeShadowsPlus/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/img_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GIGAMOLE/ComposeShadowsPlus/HEAD/app/src/main/res/drawable/img_alpha.png -------------------------------------------------------------------------------- /app/src/main/res/font/opensans_regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GIGAMOLE/ComposeShadowsPlus/HEAD/app/src/main/res/font/opensans_regular.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/space_grotesk_bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GIGAMOLE/ComposeShadowsPlus/HEAD/app/src/main/res/font/space_grotesk_bold.ttf -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GIGAMOLE/ComposeShadowsPlus/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/GIGAMOLE/ComposeShadowsPlus/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/GIGAMOLE/ComposeShadowsPlus/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GIGAMOLE/ComposeShadowsPlus/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GIGAMOLE/ComposeShadowsPlus/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GIGAMOLE/ComposeShadowsPlus/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GIGAMOLE/ComposeShadowsPlus/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GIGAMOLE/ComposeShadowsPlus/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GIGAMOLE/ComposeShadowsPlus/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GIGAMOLE/ComposeShadowsPlus/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GIGAMOLE/ComposeShadowsPlus/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GIGAMOLE/ComposeShadowsPlus/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GIGAMOLE/ComposeShadowsPlus/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GIGAMOLE/ComposeShadowsPlus/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GIGAMOLE/ComposeShadowsPlus/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GIGAMOLE/ComposeShadowsPlus/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GIGAMOLE/ComposeShadowsPlus/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GIGAMOLE/ComposeShadowsPlus/HEAD/app/src/main/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GIGAMOLE/ComposeShadowsPlus/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GIGAMOLE/ComposeShadowsPlus/HEAD/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GIGAMOLE/ComposeShadowsPlus/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GIGAMOLE/ComposeShadowsPlus/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GIGAMOLE/ComposeShadowsPlus/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GIGAMOLE/ComposeShadowsPlus/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GIGAMOLE/ComposeShadowsPlus/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GIGAMOLE/ComposeShadowsPlus/HEAD/gradlew.bat -------------------------------------------------------------------------------- /jitpack.yml: -------------------------------------------------------------------------------- 1 | jdk: 2 | - openjdk17 -------------------------------------------------------------------------------- /media/alpha_content.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GIGAMOLE/ComposeShadowsPlus/HEAD/media/alpha_content.gif -------------------------------------------------------------------------------- /media/credits.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GIGAMOLE/ComposeShadowsPlus/HEAD/media/credits.png -------------------------------------------------------------------------------- /media/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GIGAMOLE/ComposeShadowsPlus/HEAD/media/demo.gif -------------------------------------------------------------------------------- /media/demo_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GIGAMOLE/ComposeShadowsPlus/HEAD/media/demo_img.png -------------------------------------------------------------------------------- /media/elevation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GIGAMOLE/ComposeShadowsPlus/HEAD/media/elevation.gif -------------------------------------------------------------------------------- /media/footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GIGAMOLE/ComposeShadowsPlus/HEAD/media/footer.png -------------------------------------------------------------------------------- /media/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GIGAMOLE/ComposeShadowsPlus/HEAD/media/header.png -------------------------------------------------------------------------------- /media/rs_blur.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GIGAMOLE/ComposeShadowsPlus/HEAD/media/rs_blur.gif -------------------------------------------------------------------------------- /media/soft_layer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GIGAMOLE/ComposeShadowsPlus/HEAD/media/soft_layer.gif -------------------------------------------------------------------------------- /plugins/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | .gradle 3 | -------------------------------------------------------------------------------- /plugins/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GIGAMOLE/ComposeShadowsPlus/HEAD/plugins/build.gradle.kts -------------------------------------------------------------------------------- /plugins/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GIGAMOLE/ComposeShadowsPlus/HEAD/plugins/settings.gradle.kts -------------------------------------------------------------------------------- /plugins/src/main/java/CommonExtension.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GIGAMOLE/ComposeShadowsPlus/HEAD/plugins/src/main/java/CommonExtension.kt -------------------------------------------------------------------------------- /plugins/src/main/java/ProjectConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GIGAMOLE/ComposeShadowsPlus/HEAD/plugins/src/main/java/ProjectConfig.kt -------------------------------------------------------------------------------- /plugins/src/main/java/composeshadowsplus.application.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GIGAMOLE/ComposeShadowsPlus/HEAD/plugins/src/main/java/composeshadowsplus.application.gradle.kts -------------------------------------------------------------------------------- /plugins/src/main/java/composeshadowsplus.library.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GIGAMOLE/ComposeShadowsPlus/HEAD/plugins/src/main/java/composeshadowsplus.library.gradle.kts -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GIGAMOLE/ComposeShadowsPlus/HEAD/settings.gradle.kts --------------------------------------------------------------------------------