I find Composable inside a column has this problem...
# compose
a
I find Composable inside a column has this problem. When click the Image, the onClick event will be triggered But if I click outside of the Image first then click the Image, the onClick event of the Image is not triggered. If I make the Column itself clickable, this problem gone
Copy code
Column(
    modifier = Modifier.fillMaxSize(),
        //.clickable { Timber.i("column onClick") },
    horizontalAlignment = Alignment.CenterHorizontally
) {

    Image(painterResource(id = R.drawable.ic_close), null, modifier = Modifier
        .clickable {
            Timber.i("on close clicked")
        }
}