I've been using the compose accessibility test rul...
# compose-android
c
I've been using the compose accessibility test rules to test for touch target size. It seems to work pretty nicely, but I'm confused about a scenario where the test fails that I don't understand.
Copy code
IconButton(onClick = { /* doSomething() */ }, Modifier.size(32.dp)) {
        Icon(Icons.Outlined.Lock, contentDescription = "Localized description")
    }
this fails, but the touch target size is still 48.dp because material3 sets that touch target size. so why does it report that the touch target size is too small?