Skip to content

mo0rti/compose-components

Repository files navigation

Composents (Compose components)

Compose components

This repo contains a set of jetpack compose components to help you build your compose application faster.

Getting Started

Project Status: Active – The project has reached a stable, usable state and is being actively developed. Compatible with Compose — 1.4.0 Material design 3

Old configuration

Add the following code to your project's root build.gradle file:

repositories {
    maven { url "https://jitpack.io" }
}

New configuration

Add the following code to your project's settings.gradle file:

dependencyResolutionManagement {
    repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
    repositories {
        ...
        maven { url "https://jitpack.io" }
    }
}

Next, add the dependency below to your module's build.gradle file:

dependencies {
    implementation "com.github.mo0rti:compose-components:LATEST_VERSION"
}