VerticalDivider

Functions summary

Unit
@Composable
VerticalDivider(modifier: Modifier, thickness: Dp, color: Color)

Material Design divider

Cmn

Functions

VerticalDivider

@Composable
fun VerticalDivider(
    modifier: Modifier = Modifier,
    thickness: Dp = DividerDefaults.Thickness,
    color: Color = DividerDefaults.color
): Unit

Material Design divider

A divider is a thin line that groups content in lists and layouts.

Divider
image

Parameters
modifier: Modifier = Modifier

the Modifier to be applied to this divider line.

thickness: Dp = DividerDefaults.Thickness

thickness of this divider line. Using Dp.Hairline will produce a single pixel divider regardless of screen density.

color: Color = DividerDefaults.color

color of this divider line.