It's good practice to declare an optional `modifie...
# compose
f
It's good practice to declare an optional
modifier
parameter on my own composables and apply them to the outer-most composable in that function, right? Is the same also the case for my composable that just holds the entire screen content? it's not reusable and I don't need to pass any modifiers to it since it's handled internally.
z
If your composable is internal and doesn’t ever actually get passed a non-default modifier, then yea you don’t need the parameter.
f
@Zach Klippenstein (he/him) [MOD] thank you 🙏