Pat Snow
03/05/2025, 11:58 AM@Composable
private fun TestListElement(
title: String,
description: String,
icon: DrawableResource,
onClick: () -> Unit
) {
ElevatedCard(
shape = RoundedCornerShape(MainContentPadding),
onClick = onClick
) {
Same issue on buttons
Button(
onClick = {
Napier.d("$LOG testing btn")
},
content = {
Text("NAME")
}
)
EDIT:
fixed by moving from compose multiplatform 1.7.0 to 1.7.3