Is it okay to use the wrapping layout for content ...
# compose
z
Is it okay to use the wrapping layout for content inside a
CompositionLocalProvider
?
Copy code
Column {
    CompositionLocalProvider(...){
        // Use ColumnScope, e.g. Modifier.weight(1f), etc.
    }
}
👌 2