Skip to main content
.lineSpacing(spacing: number): Component
spacing
number
required
The spacing between lines, in points. Higher values increase the gap between lines.

Support

Usage

Increasing line spacing

Text("Line one\nLine two\nLine three")
    .lineSpacing(8)

Readability for long-form text

Text("Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.")
    .lineSpacing(6)
    .font("body")
    .frame({ maxWidth: 300 })

See Also