Ahmed na
12/20/2024, 3:58 AMUIKitViewController
I need it's background to be transparent, tried couple of solution but with no luck
Right now it shows white background,
Any advice ?
UIKitViewController(
factory = {
val controller = ComposeUIViewController({
opaque = false
platformLayers = false
}) {
// uIViewController()
}
controller.view.backgroundColor = UIColor.clearColor
controller
},
background = Color.Transparent,
interactive = false,
modifier = modifier.size(48.dp)
)
Richard
12/20/2024, 6:08 AM