Would this extension function make sense? ```@Comp...
# compose
g
Would this extension function make sense?
Copy code
@Composable
operator fun PaddingValues.plus(other : PaddingValues) : PaddingValues {
    return PaddingValues(
        start = calculateStartPadding(LayoutDirection.Ltr) + other.calculateStartPadding(LayoutDirection.Ltr),
        top = calculateTopPadding() + other.calculateTopPadding(),
        end = calculateEndPadding(LayoutDirection.Ltr) + other.calculateEndPadding(LayoutDirection.Ltr),
        bottom = calculateBottomPadding() + other.calculateBottomPadding(),
    )
}