ProgressBarRangeInfo

Class

Common
class ProgressBarRangeInfo(
    val current: Float,
    val range: ClosedFloatingPointRange<Float>,
    /*@IntRange(from = 0)*/
    val steps: Int = 0,
)

Accessibility range information, to represent the status of a progress bar or seekable progress bar.

Parameters

currentcurrent value in the range. Must not be NaN.
rangerange of this node
stepsif greater than 0, specifies the number of discrete values, evenly distributed between across the whole value range. If 0, any value from the range specified can be chosen. Cannot be less than 0.

Companion Object

Properties

Common
val Indeterminate = ProgressBarRangeInfo(0f, 0f..0f)

Accessibility range information to present indeterminate progress bar