function dividerBuilder()
Creates a view builder for a divider line element.
function dividerBuilder(
lineWidth?: BindingOrValue<string | number>,
lineColor?: BindingOrValue<UIColor | UIColor.ColorName | undefined>,
lineStyle?: BindingOrValue<UIDivider.LineStyle>,
): DividerBuilder;
Parameters
- lineWidth — The width of the line, in pixels or a string with unit.
- lineColor — The color of the line, as a color name or a UIColor instance.
- lineStyle — The style of the line, as a UIDivider.LineStyle value.
Return value
A builder object for configuring the divider.
Related
class UIDivider
A view class that represents a horizontal or vertical divider line.class UIDivider
A view class that represents a horizontal or vertical divider line.
