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
Hossein Amini
11/25/2022, 6:38 AM
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.