In other words, is it even possible to reset the a...
# compose
p
In other words, is it even possible to reset the applied Modifiers? Like in CSS? It can be useful to tweak existing composables components
1
z
You can make the modifiers conditional, like anything else. var modifier = Modifier.something() if (condition) modifier = modifier.padding(…) Box(modifier)