why is not using the material scaffold padding par...
# compose
o
why is not using the material scaffold padding parameter such a big deal? warranting a need for and Error in the code and I have to suppress it ?
@SuppressLint("UnusedMaterialScaffoldPaddingParameter")
s
Because you may then be drawing content behind the scaffold and potentially place for example clickable items at a place where they are not interactable
m
I would also assume because certain elements of the scaffold may change size (like the top bar) over time. So you need to pay attention to the padding so that your content doesn't overlap the top bar when it expands.
o
I see!
107 Views