Hi Team, I am not able to import `@Preview` in KM...
# compose-ios
s
Hi Team, I am not able to import
@Preview
in KMM shared module file.
Copy code
@Composable
@Preview
fun LoginScreenPreview() {
    LoginScreen(navController = rememberNavController())
}
👍 1
👍🏻 1
a
From what I know,
@Preview
is not working yet in compose multiplatform
thank you color 1
l
You can create previews in androidMain or jvmMain if you have either of those.
👀 1