Hi Guys, anyone please let me know, how you guys handle the load more results in compose? ```privat...
a
Hi Guys, anyone please let me know, how you guys handle the load more results in compose?
Copy code
private val _flightList = MutableLiveData<List<MultiCityFlightListingUiModel>>()
val flightsList: LiveData<List<MultiCityFlightListingUiModel>> = _flightList
For e.g I set the values on response of api, and observe that live data in the UI to show the appropriate results.