What's the correct way to handle padding around IconButton and other composables that already include a minimum interaction size?
I have problems when the parent composable might have either IconButton or TextField as the last element in a container based on some condition. I would normally include a bottom padding on the container itself. That way, no matter which composable is last, there will always be sufficient bottom padding. However, the IconButton already has the correct amount of spacing built into it. This means that it ends up with more bottom padding than necessary.