Hi All, Compose Multiplatform - onClick events are...
# multiplatform
p
Hi All, Compose Multiplatform - onClick events are triggered twice on iOS, the same code works fine on Android. Has anyone encountered something like that?
Copy code
@Composable
private fun TestListElement(
    title: String,
    description: String,
    icon: DrawableResource,
    onClick: () -> Unit
) {
    ElevatedCard(
        shape = RoundedCornerShape(MainContentPadding),
        onClick = onClick
    ) {
Same issue on buttons
Copy code
Button(
    onClick = {
        Napier.d("$LOG testing btn")
    },
    content = {
        Text("NAME")
    }
)
EDIT: fixed by moving from compose multiplatform 1.7.0 to 1.7.3