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