row
Add a FormRow to a FormGrid. e.g.
FormGrid().apply {
row {
// A row consists of four parts. Define only those that you need...
left { ... }
right { ... }
above { ... }
below { ... }
}
}
Content copied to clipboard
A very common convenience method when left
is a label. This is equivalent to :
row {
left { label( myLabel ) }
...
}
Content copied to clipboard
A convenience method for when you want a row with just a label on the left
, and text on the right.
This is equivalent to :
row {
left { label( myLabel ) }
right { label( text ) }
... // Continue the definition of the row.
}
Content copied to clipboard