Since Box, Column, and Row are inline composable f...
# getting-started
y
Since Box, Column, and Row are inline composable functions would it be best to wrap them in a custom Composable functions to avoid unnecessary recomposition?
v
This is quite advanced for a
getting-started
question haha. I would definitely not wrap it for the sake of it. Instead, think more about sectioning the
component
into smaller chunks so that each individual
composable
is small. That way you make the code more readable - the most important thing and you give
Compose
more "checkpoints" for restarting composition.
👍 1