How to filter the values from LazyPagingItems in kotlin

155 Views Asked by At

I am using paging3 to show the list of items with pagination, I wants to add search view from this page so I want to filter the values from LazyPagingItems. How to do this.

var values= viewModel.getvalues.collectAsLazyPagingItems()

LazyColumn(modifier = Modifier.background(Color.Gray)){
    var searchText = state.value.text
    if(searchText.isNotEmpty()){
      /*I want to filter the value based on search text*/
    }
    items(
        items =values,
    ){ value ->....
0

There are 0 best solutions below