LOGIC

Show

The common show prop controls whether a visible component renders and participates in layout.

INTERACTIVE EXAMPLE

Boolean and numeric conditions

When a condition is false, the associated component takes no space in the layout.

This message follows a boolean Signal.

You added at least three items.

dowe
signal detailsVisible value:false
signal itemCount value:0

Text show:detailsVisible
  "Optional details"

Card show:{ when:itemCount gte:3 }
  Text
    "Three items reached"

Static

Use show:false to omit a component on every target.

Responsive

Use show:{ xs:false md:true } for breakpoint visibility.

Reactive

Use a boolean Signal path or a typed numeric comparison.