Please correct me if I'm wrong. Jetpack Compose on...
# compose
m
Please correct me if I'm wrong. Jetpack Compose only allows certain modifiers on the children of a given built-in Composable (e.g. Column, Stack, etc.). It seems like every time I change the parent composable, some errors pop-up on the modifiers that are used on the current composable, requiring new imports. Why is that so?
t
Most of the Modifiers are working with all composables. But some Composable provide a scope with additional Modifiers which only works in this scope
m
So, you mean some composables define a scope for their children?
👍 2