Alex Styl
07/14/2024, 5:40 PMclickable{}
modifier to the parent, i can no longer focus on the text with a screen readerAlex Styl
07/14/2024, 5:40 PMBox(Modifier.fillMaxSize()
.clickable(
interactionSource = MutableInteractionSource(),
indication = null,
enabled = false
) {
}
,
contentAlignment = Alignment.Center) {
Column {
BasicText("1")
BasicText("2")
BasicText("3")
}
}
Alex Styl
07/14/2024, 5:58 PMModifier.pointerInput(Unit){
detectTapGestures{
// on tap
}
}
and it works as expected now. still investigating if that breaks anything in terms of accessibility. will report back if i find any issues.