Hi everyone there a lazyrow is screen A and from s...
# android
s
Hi everyone there a lazyrow is screen A and from screen A i am moving to screen B while coming back to Screen B to Screen A lazyrow in screen A is re rendering ..... How can I avoid the re rendering #compose
h
Probably you are fetching the list content in every recomposition. One solution is to fetch content in your ViewModel’s constructor or use LaunchedEffect(Unit){} to avoid it.