Oppo F9 Hang On Logo
- By rafidhcell
- Smartphones
- 2 Replies
Is there anyone here who has a solution to fix the Oppo F9 that is stuck on the logo like a line? It's only stuck on the logo until the battery runs out.
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) {
...
}