I was using live data with paging library 2 but now i upgraded to paging 3..I have a listData(which is a flow that returns paging data) and a searchQuery(livedata) and filterBy(livedata) so whenever i change it i also need the pagingdata to be updated...should i use MediatorLiveData ? Or is there any method using slow for this ?
isn't using flow better than using livedata ? and can we use channel or something for the two livedata(filter,query) ? And whenever this change return the pager as flow ? i couldn't find any similar example for this...
Thanks...is there any problem with this method ? and could you give any reference to these operators(documentation,samples etc...)as i dont understand flatMapConcat etc...