Atom

HStack

Horizontal flex row. All Katagami side-by-side layouts use HStack as their direct container. Emits div.ks-hstack.

Knobs
Density
Locale
Live Preview
Child A Child B Child C
Code (Katagami DSL)
HStack(spacing: 12) {
  Text("Child A")
  Text("Child B")
  Text("Child C")
}
Props
NameTypeDefaultDescription
spacingCGFloat0Gap between children in points
alignmentAlignmentcenterCross-axis alignment: top | center | bottom
paddingEdgeInsetszeroInner padding
densityDensitycomfortablecomfortable | compact | dense
localeLocaleenen | fr
Used In