ArcPaddingValues

Function
Android
public fun ArcPaddingValues(
    outer: Dp = 0.dp,
    inner: Dp = 0.dp,
    before: Dp = 0.dp,
    after: Dp = 0.dp,
): ArcPaddingValues

Apply additional space along each edge of the content in Dp. Note that that all dimensions are applied to a concrete edge, indepenend on layout direction and curved layout direction.

Parameters

outer Padding in the outward direction from the center of the CurvedLayout
inner Padding in the inwards direction towards the center of the CurvedLayout
before Padding added before the component, if it was draw clockwise.
after Padding added after the component, if it was draw clockwise.
Android
public fun ArcPaddingValues(all: Dp): ArcPaddingValues

Apply all dp of additional space along each edge of the content.

Android
public fun ArcPaddingValues(radial: Dp = 0.dp, angular: Dp = 0.dp): ArcPaddingValues

Apply radial dp of additional space on the edges towards and away from the center, and angular dp before and after the component.