orangy
content: @Composable () -> Unit
but then will wrap each child into another component?jw
04/25/2021, 8:07 PMZach Klippenstein (he/him) [MOD]
04/25/2021, 8:29 PMcontent
orangy
Zach Klippenstein (he/him) [MOD]
04/26/2021, 12:19 AMorangy
Container {
Component {}
Component {}
}
into this (in runtime):
Container {
ContainerWrapper { Component{} }
ContainerWrapper { Component{} }
}
by just doing something in the Container
component.Arsen
04/26/2021, 9:37 AMorangy
Adam Powell
04/26/2021, 2:58 PMComponent {}
would the wrapper wrap, and why?Adam Powell
04/26/2021, 3:00 PM