Row
A Row
is a horizontal container that splits its contents into Left
and Right
sections, providing a clear visual distinction between primary and secondary elements.
Summary
Properties
Property | Type | Description |
---|---|---|
SearchIndex |
string? |
A string that determines what the user has to type in to show this row in their search query |
View all inherited from BaseComponent
Methods
Method | Signature | Description |
---|---|---|
Left |
() -> Row |
Returns a shallow clone of Row with the container set to the row's left container. |
Right |
() -> Row |
Returns a shallow clone of Row with the container set to the row's right container. |
Events
Types
type RowProperties = Frame & {
SearchIndex: string?,
}
type Row = BaseComponent & Components & RowProperties & {
Left: (self: Row) -> Row,
Right: (self: Row) -> Row,
}