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
the RepeatingButton behavior (can be RepeatingButton.Disabled or RepeatingButton.Enabled)
Constructors
Link copied to clipboard
constructor(min: T, max: T, stepSize: T, stepSize2: T = stepSize, repeatingButton: RepeatingButton = RepeatingButton.Disabled)