Yan Pujante
03/17/2021, 2:55 PMOutlinedTextField(searchFilter.value,
onValueChange = { searchFilter.value = it },
trailingIcon = {
Icon(
Icons.Outlined.Search,
contentDescription = "filter",
)
},
modifier = Modifier.height(40.dp) // with or without
)
The resulting is shown in the screenshot:
On the left is without the modifier = Modifier.height(40.dp)
line and on the right with it (this is the "standard" dense version of the component as per Material design recommendation). The issue is the dense version (on the right) does not let me enter anything... Am I doing something wrong or is this a bug?