amar_1995
04/12/2020, 1:42 AMTextField(
value = value,
onValueChange = onValueChange,
textStyle = editorStyle,
imeAction = ImeAction.Search,
keyboardType = keyboardType,
onImeActionPerformed = {
onSearchClick()
},
onFocus = {
println("focus called >>>>")
onSearchChanged(R.drawable.ic_baseline_arrow_back_24)
},
onBlur = {
println("blur called >>>>")
}
)
In above example blur called >>>>
is never printed.
Cursor is also not removed once it gain focus.
In dev-05( I think) it was working fine but not now.