dewildte
09/30/2022, 6:57 PMdewildte
09/30/2022, 6:58 PMView
inside an AndroidView
Composable that plays an animation.
The animation is getting clipped to the bounds of the View
, I would like to prevent the clipping.dewildte
09/30/2022, 7:05 PMDoris Liu
09/30/2022, 7:17 PMChris Fillmore
09/30/2022, 7:24 PMModifier.wrapContentSize(unbounded = true)
to the AndroidView?Chris Fillmore
09/30/2022, 7:25 PMdewildte
09/30/2022, 7:25 PMdewildte
09/30/2022, 7:27 PMChris Fillmore
09/30/2022, 7:27 PMdewildte
09/30/2022, 7:28 PMval animation = rightIconImageView.drawable as AnimationDrawable
animation.start()
This is in the view.dewildte
09/30/2022, 7:28 PMdewildte
09/30/2022, 7:33 PMDoris Liu
09/30/2022, 7:35 PMView#setClipChildren(false)
on one or more parents of that ImageView.dewildte
09/30/2022, 7:36 PMdewildte
09/30/2022, 7:40 PMdewildte
09/30/2022, 7:40 PM