SelectList

A list widget with selectable items.

Use interactiveSelectList to create a list that can be interacted with.

Constructors

Link copied to clipboard
constructor(    entries: List<SelectList.Entry>,     title: Widget? = null,     cursorIndex: Int = -1,     styleOnHover: Boolean = false,     cursorMarker: String? = null,     selectedMarker: String? = null,     unselectedMarker: String? = null,     captionBottom: Widget? = null,     selectedStyle: TextStyle? = null,     cursorStyle: TextStyle? = null,     unselectedTitleStyle: TextStyle? = null,     unselectedMarkerStyle: TextStyle? = null)

Types

Link copied to clipboard
data class Entry(val title: String, val description: Widget? = null, val selected: Boolean = false)

Functions

Link copied to clipboard
open override fun measure(t: Terminal, width: Int): WidthRange
Link copied to clipboard
open override fun render(t: Terminal, width: Int): Lines
Link copied to clipboard
fun Widget.withPadding(padding: Padding, padEmptyLines: Boolean = true): Widget

Add padding around this widget.

fun Widget.withPadding(padEmptyLines: Boolean = true, padding: Padding.Builder.() -> Unit): Widget
fun Widget.withPadding(all: Int, padEmptyLines: Boolean = true): Widget
fun Widget.withPadding(top: Int, right: Int, bottom: Int, left: Int, padEmptyLines: Boolean = true): Widget