A curated collection of reusable and customizable Jetpack Compose components to accelerate your Android UI development.
- Beautiful and Versatile: Provides a range of pre-styled composables to enhance your app's visual appeal.
- Easy Integration: Seamlessly integrate these components into your existing Jetpack Compose projects.
- Theming Support: Customize the appearance of components to match your app's design system.
- Open for Contributions: We welcome contributions from the community to expand and improve this toolkit!
-
Add the JitPack repository to your root build.gradle file:
Kotlin DSL
dependencyResolutionManagement { ... repositories { ... maven { setUrl("https://jitpack.io") } } }
Groovy DSL
dependencyResolutionManagement { ... repositories { ... maven { url 'https://jitpack.io' } } }
-
Add the dependency:
Kotlin DSL
dependencies { implementation("com.github.Tanish-Ranjan:jetpack_compose_components:version") }
Groovy DSL
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.