Nadeen Ashraf
10/02/2024, 9:16 AMUIKitView(
factory = {
UIView().apply {
backgroundColor = UIColor.clearColor
opaque = false
}
},
modifier =
Modifier
.height(400.dp)
.fillMaxWidth()
.background(Color.Transparent),
)
Richard
10/02/2024, 11:23 AMComposeUIViewController
has a white background
ComposeUIViewController(
configure = {
opaque = false
},
) {
...
}
Nadeen Ashraf
10/02/2024, 12:34 PMRichard
10/03/2024, 7:43 AMComposeUIViewController
issue got fixed, see here: https://youtrack.jetbrains.com/issue/CMP-6801