https://github.com/revanthkumarj/r-components
https://github.com/revanthkumarj/r-components
Last synced: 9 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/revanthkumarj/r-components
- Owner: revanthkumarJ
- Created: 2025-09-20T05:27:33.000Z (10 months ago)
- Default Branch: master
- Last Pushed: 2025-09-20T06:21:06.000Z (10 months ago)
- Last Synced: 2025-09-20T07:15:41.229Z (10 months ago)
- Language: Kotlin
- Size: 101 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# r-components
**r-components** is an Android library that provides **customized Jetpack Compose UI components**. It allows you to integrate ready-made UI elements into your projects **without building them from scratch**, saving development time and ensuring consistency.
---
## Features
- Ready-to-use Jetpack Compose components
- Customizable and reusable UI elements
- Easy integration into any Android project
---
## Installation
### 1️⃣ Add JitPack repository
In your **root `settings.gradle.kts`** (or `settings.gradle`):
```kotlin
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven { url = uri("https://jitpack.io") }
}
}
```
### 2️⃣ Add the library dependency
In your app module build.gradle.kts:
```kotlin
dependencies {
implementation("com.github.revanthkumarJ:r-components:1.0.0") // Replace with the latest version
}
```
For a full working example, check the sample project:
[Sample Project](https://github.com/revanthkumarJ/sample)