Fixed
Status Update
Comments
an...@google.com <an...@google.com>
ap...@google.com <ap...@google.com> #2
A couple of questions:
1. Have you saw crash in real device or only in simulators?
2. Do you use dynamic feature for language ID?
1. Have you saw crash in real device or only in simulators?
2. Do you use dynamic feature for language ID?
Description
I have attached the source for the whole view and data handling and the logcat output from running the app and causing the crash on my LG G6 with Android 8.0.0. The crash has been replicated on an S20 with Android 10.
```
var searchState = state { TextFieldValue() }
var searchItems = state { results.filter(searchState.value.text) }
Box(paddingTop = 0.dp, paddingBottom = 10.dp) {
fun onImeActionPerformed(action: ImeAction, keyboard: SoftwareKeyboardController?): Unit {
Log.v("conditions", "ime pressed $action $keyboard")
}
OutlinedTextField(
value = searchState.value,
onValueChange = {
Log.v("conditions", "search bar $it")
searchState.value = it
searchItems.value = results.filter(searchState.value.text)
},
activeColor = primaryColor,
inactiveColor = primaryColor,
label = { TextDisabled { Text("Search") } },
onFocusChange = {
Log.v("conditions", "focus changed $it")
},
imeAction = ImeAction.NoAction,
keyboardType = KeyboardType.Ascii,
onImeActionPerformed = ::onImeActionPerformed,
modifier = Modifier.fillMaxWidth()
)
}
LazyColumnItems(
items = searchItems.value
) {
```