jasu
03/12/2022, 7:56 AMNoteListComponent(
notes: List<Note>
…coupleOfParameters
) {
var searchText by rememberSaveable { mutableStateOf("") }
LaunchedEffect(key1 = searchText) {
notesViewModel.searchNotes(searchText)
}
LazyList(...withParams)
}
Arsen
03/12/2022, 1:23 PMjasu
03/12/2022, 1:26 PM