Loading repository data…
Loading repository data…
Tanish-Ranjan / repository
A curated collection of reusable and customizable Jetpack Compose components to accelerate your Android UI development.
A transparent discovery signal based on current public GitHub metadata.
This score does not audit code, security, maintainers, documentation quality, or suitability. Verify the repository and its current documentation before adoption.
A curated collection of reusable and customizable Jetpack Compose components to accelerate your Android UI development.
Add the JitPack repository to your root build.gradle file:
dependencyResolutionManagement {
...
repositories {
...
maven { setUrl("https://jitpack.io") }
}
}
dependencyResolutionManagement {
...
repositories {
...
maven { url 'https://jitpack.io' }
}
}
Add the dependency:
dependencies {
implementation("com.github.Tanish-Ranjan:jetpack_compose_components:version")
}
dependencies {
implementation 'com.github.Tanish-Ranjan:jetpack_compose_components:version'
}
Use the Composable:
@Composable
fun MyScreen() {
// Example usage of a circular throbber
CircularThrobber1(
modifier = Modifier.size(100.dp),
color = Color.Blue
)
}
Browse through a huge collection of all the components this library provides in components page.
We welcome contributions! Please check out our CONTRIBUTING.md guide for details on how to get involved.
This project is licensed under the MIT License.