Koneko Toujou
09/10/2021, 10:41 PMZach Klippenstein (he/him) [MOD]
09/10/2021, 11:44 PMgraphicsLayer
modifier or withSaveLayer
calls inside draw scopes. Composables draw to Canvas
objects which are backed (in most cases, at least on newer android versions) by those `RenderNode`s. I believe there’s some relationship between a RenderNode
and a display list, but i’m not sure exactly what it is.
So in your example case, Row
doesn’t do anything with layers so Text
would end up drawing to the same Canvas
as whatever calls Row
would have access to.Adam Powell
09/10/2021, 11:52 PMKoneko Toujou
09/11/2021, 12:02 AMromainguy
09/11/2021, 3:41 AMKoneko Toujou
09/11/2021, 3:42 AMromainguy
09/11/2021, 3:42 AMKoneko Toujou
09/11/2021, 3:43 AMromainguy
09/11/2021, 3:44 AMKoneko Toujou
09/11/2021, 3:46 AMromainguy
09/11/2021, 3:50 AMKoneko Toujou
09/11/2021, 3:51 AM