Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
val resultsList = mutableListOf<whatever>()
...
if (dontFilter && dontSearch)
resultsList = viewmodel.itemMap.values.toMutableList()
else {
// do search/filter logic
resultsList.add(whateverItem)
}
LazyColumn(items = resultsList) {
...
}