Extract the shared presets-plus-custom editor card — tonal surface with the connected shape, an optional single-choice unit toggle, and an amount field with a live preview + confirm — used by the reminder, agenda-range and snooze pickers into one reusable, presentational component. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
15 lines
545 B
Kotlin
15 lines
545 B
Kotlin
// Top-level build for floret-kit. Plugins are declared here (apply false) and
|
|
// applied per-module. Every module shares the family group + version so the
|
|
// consuming apps can depend on `de.jeanlucmakiola.floret:<module>` and Gradle's
|
|
// composite-build substitution maps it to the local source module.
|
|
plugins {
|
|
alias(libs.plugins.android.library) apply false
|
|
alias(libs.plugins.kotlin.compose) apply false
|
|
alias(libs.plugins.kotlin.jvm) apply false
|
|
}
|
|
|
|
subprojects {
|
|
group = "de.jeanlucmakiola.floret"
|
|
version = "0.2.0"
|
|
}
|