This repo contains a set of jetpack compose components to help you build your compose application faster.
Add the following code to your project's root build.gradle
file:
repositories {
maven { url "https://jitpack.io" }
}
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"
}