Spin
Properties
Property | Type | Description |
---|---|---|
tip | string | Text shown under spinner |
size | small, middle, large | Size of the spinner |
spinning | boolean | Controls weather it spins |
indicator | string | Icon of spinner |
delay | number | "Specifies a delay for loading state" |
fullscreen | boolean | Show spinner fullscreen |
Children
Spinner does support children.
Whenspinning = true
the children are "darkened out", otherwise they're fully shown.

Example
myUI:createElement("Spin", {
size = "large",
spinning = true,
})
tip
Text displayed under spinner.
There seems to be an issue when tip is set, and no children is given the tip text of offset weirdly.size
Size of the spinner.
Doesn't really do much, and you can't size it to whatever you want.spinning
Weather the spinner is spinning, when false all children will be displayed without a overlay.

indicator
The icon of the spinning item.
indicator = "LoadingOutlined"
:

delay
"Specifies a delay in milliseconds for loading state (prevent flush)"
fullscreen
When true the spinner is shown fullscreen.
It's set corresponding to parent's offset.