Progress

data class Progress(val percent: Int = 0, val value: Int = 0)

Foundation class of the slider data handling that bundles the value and its percentage.

Parameters

percent

the calculated percent of the value; primarily used for CSS positioning

value

the actual value of the slider

Constructors

Link copied to clipboard
fun Progress(percent: Int = 0, value: Int = 0)

Properties

Link copied to clipboard
val percent: Int = 0
Link copied to clipboard
val value: Int = 0