LevelBar

@Composable
fun LevelBar(value: Double, modifier: Modifier = Modifier, orientation: Orientation = Orientation.HORIZONTAL, inverted: Boolean = false, maxValue: Double = 1.0, minValue: Double = 0.0, mode: LevelBarMode = LevelBarMode.CONTINUOUS, offsets: List<Offset> = emptyList())

Creates a org.gnome.gtk.LevelBar that shows a level indicator.

Parameters

value

The level at which the level bar is filled.

modifier

Compose Modifier for layout and styling.

orientation

The orientation of the level bar.

inverted

Whether the level bar is inverted.

maxValue

The maximum value that can be reached.

minValue

The minimum value.

mode

The level bar mode.

offsets

A list of Offset used to apply styles on the level bar.