gsala
09/15/2022, 1:19 PM@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(),
)
}