Skip to content

0.12.3

Compare
Choose a tag to compare
@fornewid fornewid released this 16 May 16:45
· 70 commits to main since this release

Built to work with

  • Compose Multiplatform 1.4.0 (:core)
  • Jetpack Compose BOM 2023.05.00 (:navigation)

Key Changes

🖥️ [Core] Compose Multiplatform is now supported in 'core' library!

plugins {
    kotlin("multiplatform")
    id("org.jetbrains.compose")
}

kotlin {
    android()
    jvm("desktop")
    ios()
    iosSimulatorArm64()

    sourceSets {
        val commonMain by getting {
            dependencies {
                implementation(compose.desktop.currentOs)
                implementation("io.github.fornewid:material-motion-compose-core:0.12.3")
            }
        }
    }
}

What’s Changed