Android Compose: Can Composables Store More Than A Single State?
from the official docs (Managing State) Composable functions can store a single object in memory by using the remember composable. A value computed by remember is stored in the co
Solution 1:
I assume that documentation meant, that using one remember
you can store one object, not that each composable can't have multiple remember
values.
Post a Comment for "Android Compose: Can Composables Store More Than A Single State?"