jetpack_compose_components
Release Notes (1.0.0)
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.