Other
Repeater
A container component that repeats its child components based on a dictionary.
Fields
Name | Type | Description | Options |
---|---|---|---|
Repeater object | Object | Include a state reference to the dictionary used for repeating the child components. Alternatively, specify a JSON object. | |
Key variable name | Text | Set the name of the variable that will store the key of the current repeater object entry. | |
Value variable name | Text | Set the name of the variable that will store the value of the current repeater object entry. |
Low code usage
This component can be declared directly in Python, using backend-driven UI.
ui.Repeater(content={
"repeaterObject": {}, # Union[Dict, str]
"keyVariable": "", # str
"valueVariable": "", # str
}
)