Yan Pujante
03/18/2021, 2:57 PMOutlinedTextField
when it gets resized
My original code (which I was having issue with):
OutlinedTextField(searchFilter.value,
onValueChange = { searchFilter.value = it },
trailingIcon = {
Icon(
Icons.Outlined.Search,
contentDescription = "filter",
)
},
modifier = Modifier.height(40.dp)
)
It this a bug or the intended behavior? Is there anything I can do to change the behavior (I would like to use 40.dp
)?Kirill Grouchnikov
03/18/2021, 3:07 PMjim
03/18/2021, 3:16 PMYan Pujante
03/18/2021, 3:18 PMjim
03/18/2021, 3:20 PMYan Pujante
03/18/2021, 3:20 PMYan Pujante
03/19/2021, 3:27 PM