Skip to main content

The Spacer component for Retool Mobile

An area of empty space to separate content.

Properties

All properties for this object with supported data types or values. You can write JavaScript almost anywhere in Retool to manipulate or read property values.

hidden

Whether this object is hidden from view.

Type boolean
Format True/False
Mutability
ControlUsage
Retool UI Inspector > Appearance
MethodsetHidden()
Default
false
Examples
true

spacing

The amount of padding.

Type number
Mutability
ControlUsage
Retool UI Inspector

Methods

JavaScript API methods for this object. You can write JavaScript almost anywhere in Retool and use methods to manipulate data and property values.

spacer.setHidden()

Set the hidden value to toggle whether the component is visible. Defaults to true without a parameter.

Definition
spacer.setHidden(hidden)
Parameters

hidden

boolean

Whether this object is hidden from view.

Examples

Hide spacer.

spacer.setHidden(true);

Unhide spacer.

spacer.setHidden(false);

Events

Events triggered by user interactions. Use event handlers to trigger queries or other actions in response to events.