Big Chungus
02/15/2021, 5:56 PMTextField(
value = value,
onValueChange = {},
readOnly = true,
modifier = Modifier.clickable(role = Role.Button, onClick = {
expanded = !expanded
}),
trailingIcon = {
Icon(
imageVector = if (expanded) Icons.Default.KeyboardArrowUp else Icons.Default.KeyboardArrowDown,
contentDescription = "Localized description")
}
)
Am I doing something wrong?gbaldeck
02/15/2021, 6:18 PMBig Chungus
02/15/2021, 6:24 PM