https://github.com/kazemihabib/compose-shimmer
A Jetpack compose modifier to add a shimmering effect to any composable.
https://github.com/kazemihabib/compose-shimmer
android jetpack-compose shimmer
Last synced: 21 days ago
JSON representation
A Jetpack compose modifier to add a shimmering effect to any composable.
- Host: GitHub
- URL: https://github.com/kazemihabib/compose-shimmer
- Owner: kazemihabib
- License: mit
- Created: 2020-05-16T10:11:05.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2021-08-23T12:54:10.000Z (over 3 years ago)
- Last Synced: 2025-04-15T18:02:31.367Z (21 days ago)
- Topics: android, jetpack-compose, shimmer
- Language: Kotlin
- Size: 1.86 MB
- Stars: 144
- Watchers: 3
- Forks: 17
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://jitpack.io/#kazemihabib/compose-shimmer)
compose-shimmerA Jetpack compose modifier to add a shimmering effect to any widget.
MyComponent( modifier = Modifier.shimmer() )
##### Compatible with Compose version **1.0.0-alpha09**## Download
Available through jitpack.
Add the maven repo to your root `build.gradle`
```groovy
allprojects {
repositories {
maven { url 'https://jitpack.io' }
}
}
```Add the dependency:
```groovy
dependencies {
implementation 'com.github.kazemihabib:compose-shimmer:1.0.1'
}
```