ScrollBar
The ScrollBar
works in a similar way to Slider but is mainly used to navigate in a flexible view.
ScrollBarComponent hoScrollBar = new ScrollBarComponent(Axis.HORIZONTAL);
hoScrollBar.width(40);
ScrollBarComponent veScrollBar = new ScrollBarComponent(Axis.VERTICAL);
veScrollBar.height(15);

Methods
Method | Description |
---|---|
| Returns the scrollbar config |
Example
ScrollBarComponent veScrollBar = new ScrollBarComponent(Axis.VERTICAL);
veScrollBar.height(15);
ScrollBar scrollBar = veScrollBar.scrollBar();
scrollBar.update(0, 20); //index 0 of 20
Last modified: 01 Juni 2025