Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 445 Bytes

File metadata and controls

28 lines (19 loc) · 445 Bytes
title HStack

HStack

HStack stacks children horizontally.

HStack{.terminal}

Basic usage

new HStack(
    new Button("Left"),
    new Button("Right")
).Spacing(2);

Defaults

  • Default alignment: HorizontalAlignment = Align.Start, VerticalAlignment = Align.Stretch

Related