Skip to content

Ui XML include

BlackTower edited this page Aug 2, 2022 · 8 revisions
Table of Contents
- [Ui XML Reference\include](#ui-xml-referenceinclude) * [name](#name)

Embed another UI definition.

Example Usage

<HStack spacing="10" padding="10" backgroundImage="frame01_blue" reverse="true">
    <include name="include" />
    <include name="include" />
    <include name="include" />
</HStack>

<!-- A separate UI element named 'include' -->
<Frame height="100" width="100" backgroundImage="cart" />

This XML produces the following UI: image

Related Trigger Function(s):

  • None.

Embed another UI definition

This frame cannot be top level.

name

Value type: string

Description

The name of the UI to embed.

Example Usage

<HStack spacing="10" padding="10" backgroundImage="frame01_blue" reverse="true">
    <include name="include" />
    <include name="include" />
    <include name="include" />
</HStack>

<!-- A separate UI element named 'include' -->
<Frame height="100" width="100" backgroundImage="cart" />

Related Trigger Function(s):

  • None.

Clone this wiki locally