I'm searching for a UI component to display a log ...
# compose
m
I'm searching for a UI component to display a log file onto the screen. The User should be able to scroll through the log file. The Log file can be huge, so it should probably load the needed rows lazy Is there anything for that in jetpack compose or a library you know? It es quite difficult to search for "log file jetpack compose" because the answers most of the time refer to logcat or other Android Studio components
w
This could probably be done with a LazyColumn with texts split by line, as long as the file isn’t too big to load into memory.
m
Mhhh. Good idea. I will try that. Thank you!