
Offers pre-built Compose-Multiplatform components, featuring elements like NeoTextField, PasswordTextField, ButtonCard, and NeoAlert, enhancing UI development with curated, reusable components.
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.
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.
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.
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.