Left one - iOS , right one -> Android , expected i...
# multiplatform
r
Left one - iOS , right one -> Android , expected is Android Is there any updates on this? https://youtrack.jetbrains.com/issue/CMP-3154/No-way-to-create-a-UIKitView-with-transparent-background Because the modifiers i am using are not working on iOS , using rive cmp
Copy code
RiveAnimationComponent(
            source = page.riveAnimationUrl,
            modifier = Modifier
                .fillMaxSize()
                .blur(Spacing.s64)
                .alpha(if (pageNumber >= 1) 0.4f else 1f)
                .scale(2f),
            autoPlay = true,
            loop = true
        )
Copy code
@OptIn(ExperimentalRiveCmpApi::class)
@Composable
fun RiveAnimationComponent(
    source: String,
    modifier: Modifier = Modifier,
) {
    ...

    Box(modifier = modifier) {
        CustomRiveAnimation(
            modifier = Modifier.matchParentSize(),
            composition = composition
        )
    }
}