PilotPicker

class PilotPicker<LABEL : Any, ITEM : Any>(val label: StateFlow<LABEL>, val items: StateFlow<List<ITEM>>, val onSelectedIndex: (Int) -> Unit)

Constructors

Link copied to clipboard
constructor(label: StateFlow<LABEL>, items: StateFlow<List<ITEM>>, onSelectedIndex: (Int) -> Unit)

Properties

Link copied to clipboard
val items: StateFlow<List<ITEM>>
Link copied to clipboard
val label: StateFlow<LABEL>
Link copied to clipboard