Hello Guys, I need help to set transparent color i...
# compose-ios
j
Hello Guys, I need help to set transparent color in
UIKitView
. But i'm getting
white
background color. What to do in iosApp?
Copy code
UIKitView(
        factory = {
            uiView()
        },
        modifier = modifier,
        background = Color.Transparent,
    )
b
Could you do it in factory or update (modifying the actual UIView)?
j
i've tried in uiview with
uiview.backgroundColor = UIColor.clear
but not working
u
might be helpful
👍 1