Kotlin Multiplatform library for componentization of Compose UI. The library is based on concepts proposed and implemented by awesome Decompose. The differences are:
- Kotlin's coroutine first
- No dependencies on Android types
- simplified (subjectively) API
Use it only if you know what you do.
In gradle/libs.versions.toml
[versions]
kotlin = "2.0.20"
componental = "0.7"
[libraries]
componental = { module = "de.halfbit:componental", version.ref = "componental" }
componental-compose = { module = "de.halfbit:componental-compose", version.ref = "componental" }
[plugins]
kotlin-compose = { id = "org.jetbrains.kotlin.plugin.compose", version.ref = "kotlin" }
kotlin-multiplatform = { id = "org.jetbrains.kotlin.multiplatform", version.ref = "kotlin" }
kotlin-android = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" }
Shared code in shared/build.gradle.kts
plugins {
alias(libs.plugins.kotlin.multiplatform)
}
kotlin {
sourceSets {
commonMain.dependencies {
implementation(libs.componental)
}
}
}
Android code in appAndroid/build.gradle.kts
plugins {
alias(libs.plugins.android.application)
alias(libs.plugins.kotlin.android)
alias(libs.plugins.kotlin.compose)
}
dependencies {
api(libs.componental.compose)
}
- Bump version in
root.publication.gradle.kts
./gradlew clean build publishAllPublicationsToCentralRepository
- Set
X.X-SNAPSHOT
version inroot.publication.gradle.kts
./gradlew clean build publishToMavenLocal
- 0.7 Improved API and handling of hierarchy restoration process
- 0.6 Better handling of closed channels
- 0.5 Improve Toast API and UI, bump to Kotlin 2.0.20
- 0.4 Refine Stack and Slot API and their implementations
- 0.3 Add BackNavigation
- 0.2 Module
componental
is exposed as API fromcomponental.compose
- 0.1 Initial release
Copyright 2024 Sergej Shafarenka, www.halfbit.de
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.