svenjacobs
09/27/2022, 5:48 AM@Preview
annotation. Although I added the compose.preview
dependency
val commonMain by getting {
dependencies {
implementation(compose.runtime)
implementation(compose.foundation)
implementation(compose.ui)
implementation(compose.uiTooling)
implementation(compose.preview) // <--- see here
}
}
the androidx.compose.ui.tooling.preview.Preview
annotation is not found in the classpath of the code placed in commonMain
. What am I doing wrong?
JetBrains Compose 1.2.0-beta01
, Android Studio Electric Eel Beta 1