Buttons
8 posts tagged with "Buttons"
.back-button
The .back-button action displays a back button for navigation. It belongs to the buttons category within the ui area.
Action Syntax
.back-button !set:icon
.back-button "text"
.back-button !set:icon "text"
.back-button [file]
.back-button !set:icon [file]
.back-button "text" [file]
.back-button !set:icon "text" [file]
Valid sizes
Examples
// Basic Usage
.back-button !icon
.busy-button
The .busy-button action a button with a busy indicator. It belongs to the buttons category within the ui area.
Action Syntax
.busy-button "text"
.busy-button !set:icon "text"
.busy-button "text" [file]
.busy-button !set:icon "text" [file]
Valid sizes
Examples
// Basic Usage
.busy-button "label"
.button
The .button action Creates a clickable button that can trigger actions or navigate. It belongs to the buttons category within the ui area.
Action Syntax
.button "text"
.button "text" [file]
.button !set:icon "text"
.button !set:icon "text" [file]
.button $variable
.button [file]
.button !set:icon [file]
Valid sizes
Modifiers
click
The .button action supports the click modifier.
.button-bar
The .button-bar action Groups multiple buttons together in a horizontal bar layout. It belongs to the buttons category within the ui area.
Action Syntax
This action accepts various parameters. See the examples below for usage patterns.
Valid sizes
Examples
// Basic Usage
.button-bar
.circle-button
The .circle-button action a circular button. It belongs to the buttons category within the ui area.
Action Syntax
.circle-button "text"
.circle-button $variable
.circle-button !set:icon
.circle-button +image
Valid sizes
Examples
// Basic Usage
.circle-button "Label"
// Using Variables
// Display dynamic content from variables
.circle-button $labelvar
.continue-button
The .continue-button action a button that continues an app in wait state. It belongs to the buttons category within the ui area.
Action Syntax
.continue-button "text"
.continue-button $variable
Valid sizes
Examples
// Basic Usage
.continue-button "label"
// Using Variables
// Display dynamic content from variables
.continue-button $label
.icon-button
The .icon-button action this is an icon button. It belongs to the buttons category within the ui area.
Action Syntax
.icon-button !set:icon
.icon-button !set:icon [file]
Valid sizes
Examples
// Basic Usage
.icon-button !home
+decorate
The +decorate action basic mobile navigation button with icon and a label. It belongs to the buttons category within the ui area.
Action Syntax
+decorate !set:icon "text"
+decorate !set:icon "text" [file]
+decorate !set:icon [file]
+decorate !set:icon $variable [file]
Valid sizes
Examples
// Basic Usage
.nav-button !icon "Label"
// Using Variables
// Display dynamic content from variables
.nav-button !icon $label [block]