org.atsui.Row

atsui.org

Documentation

Arranges children horizontally with consistent spacing.

main procedure

Arranges children horizontally with consistent spacing.

Input

Encodingapplication/json
align string Optional

Cross-axis (vertical) alignment of children.

maxLength: 32 bytes
children array Required

No description available.

gap string Optional

Space between children.

maxLength: 32 bytes
inset boolean Optional

Whether this container has inset padding. The theme controls the amount.

Output

Encodingapplication/json
Try It

Requests are sent directly from your browser. Some servers may block requests due to CORS.

Base URL for XRPC calls (e.g., https://bsky.social)
Enter valid JSON for the request body
View raw schema
{
  "type": "procedure",
  "input": {
    "schema": {
      "type": "object",
      "required": [
        "children"
      ],
      "properties": {
        "gap": {
          "type": "string",
          "default": "medium",
          "maxLength": 32,
          "description": "Space between children.",
          "knownValues": [
            "small",
            "medium",
            "large"
          ]
        },
        "align": {
          "type": "string",
          "default": "center",
          "maxLength": 32,
          "description": "Cross-axis (vertical) alignment of children.",
          "knownValues": [
            "start",
            "center",
            "end",
            "stretch"
          ]
        },
        "inset": {
          "type": "boolean",
          "description": "Whether this container has inset padding. The theme controls the amount."
        },
        "children": {
          "type": "array",
          "items": {
            "ref": "at.inlay.defs#element",
            "type": "ref"
          }
        }
      }
    },
    "encoding": "application/json"
  },
  "output": {
    "schema": {
      "ref": "at.inlay.defs#response",
      "type": "ref"
    },
    "encoding": "application/json"
  },
  "description": "Arranges children horizontally with consistent spacing."
}

Lexicon Garden

@