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…