NumberPickerSetup

class NumberPickerSetup<T : Number>(val min: T, val max: T, val stepSize: T, val stepSize2: T = stepSize, val repeatingButton: RepeatingButton = RepeatingButton.Disabled)

setup class for a number picker dialog

Parameters

min

the minimum value for this picker

max

the maximum value for this picker

stepSize

the second step size for the secondary (outer) decrease and increase buttons of this picker (if it is equal to stepSize, the buttons will be hidden)

repeatingButton

Constructors

Link copied to clipboard
constructor(min: T, max: T, stepSize: T, stepSize2: T = stepSize, repeatingButton: RepeatingButton = RepeatingButton.Disabled)

Properties

Link copied to clipboard
val max: T
Link copied to clipboard
val min: T
Link copied to clipboard
Link copied to clipboard
val stepSize: T
Link copied to clipboard