clhols
10/26/2021, 3:27 PMAnimatedVisibility(enter = slideInVertically()) {}
But the Composable get clipped by the screen height, so you only get to see the top part of it when it animates in. The Composable is scrollable, so my guess is that it is animating using the height of the scroll container and not the content. So I need the full content laid out when animating in but still scrollable afterwards. Any ideas on how to accomplish that?Adam Powell
10/26/2021, 6:31 PMclhols
10/27/2021, 1:21 PM