Is there a way to make sure that an animation does...
# compose
m
Is there a way to make sure that an animation doesn't execute until the view is visible on screen? I have a
animateDpAsState
, but it seems to be running right when the
targetValue
changes even though the view itself is not yet visible I am using both Android classic views + compose inter-operably, basically what Im doing is, I turn off this
ComposeView
until a condition is met, when this condition is met, I then turn the
ComposeView
visibility to true but it seems like the animation already happened before the view was visible on screen? Not sure whats happening but my log in
finishedListener
is not executing