Zun
10/30/2022, 1:29 PMtrailingIcon = {
if (enabled) {
Icon(icon, null, Modifier.clickable { // stuff })
} else {
null
}
}
this (with or without the else statement) for example doesn't workZun
10/30/2022, 1:29 PMLoney Chou
10/30/2022, 4:47 PMtrailingIcon = if (enabled) {
{ Icon(icon) }
} else null
Zun
10/30/2022, 6:29 PM