Disable download manager
I read on here, I believe, about that to stop bloatware. If it is disabled, what manages downloads instead? I assume it's a system app.
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) {
...
}