Why is the order important for the modifier (fillMaxSize() vs padding()) in Android Jetpack Compose?
Hello,
Why is the order important for the modifier (fillMaxSize() vs padding()) in Android Jetpack Compose?
I get for the modifiers:
- Modifier.fillMaxSize().padding(16.dp)
- Modifier.padding(16.dp).fillMaxSize()
Not the same result.
The latter creates a smaller composable -> but since one acts on the outside (fillMaxSize) and the other on the inside (padding), it shouldn't matter in my opinion in which order I define it.
Just like with HTML.
In advance:
I am not a jetpack programmer and can only draw logical conclusions from the (fastly flying) documentation…
see Padding:
Jetpack Compose doesnโt have a modifier for margin. We should use the padding modifier for both padding and margin. (Depending on the position/order in a sequence of formattings.)
in your case this would mean that a pudding() before Fillmaxsize() as Margin act. Padding() After Fillmaxsize() as Padding
***Declaration under reservation that it is not my area of expertise! ๐