Skip to content

Latest commit

 

History

History
73 lines (53 loc) · 2.7 KB

File metadata and controls

73 lines (53 loc) · 2.7 KB

Droidcore

Release

Droidcore is a Kotlin MultiPlatform library that gives you various pre-built Compose-Multiplatform components, 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.3.0")
}

Remember to always add the latest release version.

List of components

  1. NeoTextField

  2. PasswordTextField

  3. ButtonCard

  4. Pocket

  5. NeoAlert

  6. CarouselCard

  7. Flipcard

  8. NeoToast