circularSlider

inline fun <T : Number, Comparable<T>> circularSlider(model: ConfinedValueModel<T>, noinline config: CircularSliderConfig<T>.() -> Unit = {}): FieldVisualizer<T>(source)

Creates a CircularSlider control that is bound to a Field. This control lets the user select a value within a range.

Parameters

model

for the Slider

config

for the Slider


inline fun <T : Number, Comparable<T>> circularSlider(range: ClosedRange<T>, noinline config: CircularSliderConfig<T>.() -> Unit = {}): FieldVisualizer<T>(source)

Creates a CircularSlider control that is bound to a Field. This control lets the user select a value within a range.

Parameters

range

for the Slider

config

for the Slider


See also