TextListCell
open class TextListCell<T>(listView: ListView<T>, item: T, text: String = item.toString()) : SingleNodeListCell<T, Label>
A ListCell which uses a Label to display the cell's value. This is the default type of ListCell, if ListView.cellFactory is unchanged.
Theme DSL
"list_cell" {
child("label") { ... }
}
Content copied to clipboard
TextListCell inherits all features of ListCell.