trevjones
10/24/2022, 11:13 PMAlbert Chang
10/25/2022, 2:29 AMModifier.graphicsLayer(alpha = 0.99f) to a composable, it and its children will be drawn into a composition layer so that some `BlendMode`s will work.trevjones
10/25/2022, 4:04 AMAlbert Chang
10/25/2022, 4:24 AMit and its children will be drawn into a composition layerYou need to either remove the
Canvas and use Modifier.graphicsLayer(alpha = 0.99f).drawWithContent { ... } on the Text, or apply Modifier.graphicsLayer(alpha = 0.99f) on the parent of the Text and the Canvas and put the Text before the Canvas.trevjones
10/25/2022, 2:49 PMtrevjones
10/26/2022, 11:43 AM