Hello everyone, where can I find the library for p...
# multiplatform
e
Hello everyone, where can I find the library for previewing composable in compose Multiplatform???
1
o
At root of
shared/build.gradle.kts
Copy code
dependencies {
    debugImplementation(compose.uiTooling)
}
in
commonMain
dependencies
Copy code
kotlin {
    sourceSets {
        commonMain.dependencies {
            implementation(compose.components.uiToolingPreview)
        }
    }
}
Then, import
org.jetbrains.compose.ui.tooling.preview.Preview
👍 1