Files
floret-kit/build.gradle.kts
Jean-Luc Makiola df8bdbaf73 release: floret-kit 0.2.1
Adds components' `scrollable` opt-out on CollapsingScaffold (and its
FullScreenPicker passthrough), so a picker with more options than an
eagerly composed column can carry can drive its own LazyColumn.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-07-17 15:36:44 +02:00

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.1"
}