Jetpack Compose: Drawing outside of Composable bounds While using Transparent Colors
I'm creating a custom component in Jetpack Compose that needs to be drawn beyond the component's bounds, Which might use transparent color in BlendMode. I'm using CompositingStrategy for handling this but facing some issues.
Below is the example recreation of the issue.
@Composable
@Preview(widthDp = 600, heightDp = 600)
private fun Preview() {
Column(
Modifier.fillMaxSize().background(Color.Blue),
verticalArrangement = Arrangement.Center,
horizontalAlignment =...