Stack Widget#

Back To User Interface

Stack is a widget which overlays its children on top of each other.

Usage#

Stack.create(
  Text.create("First child"),
  Text.create("Second child"),
  Text.create("Third child"),
);