A Jetpack compose modifier to add a shimmering effect to any widget.
MyComponent( modifier = Modifier.shimmer() )
Available through jitpack.
Add the maven repo to your root build.gradle
allprojects {
repositories {
maven { url 'https://jitpack.io' }
}
}
Add the dependency:
dependencies {
implementation 'com.github.kazemihabib:compose-shimmer:1.0.1'
}