Skip to content

Custom core components for Jetpack Compose by Neotica.

License

Notifications You must be signed in to change notification settings

laetuz/Droidcore

Repository files navigation

Droidcore

Release

Droidcore is an Android library that gives you various pre-built Jetpack Compose component, curated and built with love from the team at Neotica.

Implementing Droidcore to your project

Go to your settings.gradle file:

settings.gradle

    dependencyResolutionManagement {
        repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
        repositories {
            mavenCentral()
            //Add the line below
            maven { url 'https://jitpack.io' }
        }
    }

settings.gradle.kts

    dependencyResolutionManagement {
    repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
    repositories {
        google()
        mavenCentral()
        //Add the line below
        maven { url = URI("https://jitpack.io") }
    }

And then add to your dependency on your build.gradle(app) file:

dependencies {
    implementation ("com.github.laetuz:Droidcore:1.2.5")
}

Remember to always add the latest release version.

List of components

  1. NeoTextField

  2. PasswordTextField

  3. ButtonCard

  4. Pocket

  5. NeoAlert

  6. CarouselCard

About

Custom core components for Jetpack Compose by Neotica.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages