ScrollView
A Scrollview contains a viewport that is bigger than the view and can be scrolled. It has scrollbar to interact with. The viewport-width and viewport-height are calculated automatically to create a scrollable view except for when using a for loop to populate the elements. In that case the viewport-width and viewport-height aren’t calculated automatically and must be set manually for scrolling to work. The ability to automatically calculate the viewport-width and viewport-height when using for loops may be added in the future and is tracked in issue #407.
Properties
enabled
bool default: true
Used to render the frame as disabled or enabled, but doesn’t change behavior of the widget.
has-focus
bool (in-out)
default: false
Used to render the frame as focused or unfocused, but doesn’t change the behavior of the widget.
viewport-width
length (in-out)
default: 0px
The width of the viewport of the scrollview.
viewport-height
length (in-out)
default: 0px
The height of the viewport of the scrollview.
viewport-x
length (in-out)
default: 0px
The x
position of the scrollview relative to the viewport. This is usually a negative value.
viewport-y
length (in-out)
default: 0px
The y
position of the scrollview relative to the viewport. This is usually a negative value.
visible-width
length (out)
default: 0px
The width of the visible area of the ScrollView (not including the scrollbar)
visible-height
length (out)
default: 0px
The height of the visible area of the ScrollView (not including the scrollbar)
vertical-scrollbar-policy
enum ScrollBarPolicy default: the first enum value
ScrollBarPolicy
This enum describes the scrollbar visibility
as-needed
: Scrollbar will be visible only when neededalways-off
: Scrollbar never shownalways-on
: Scrollbar always visible
The vertical scroll bar visibility policy. The default value is ScrollBarPolicy.as-needed
.
horizontal-scrollbar-policy
enum ScrollBarPolicy default: the first enum value
ScrollBarPolicy
This enum describes the scrollbar visibility
as-needed
: Scrollbar will be visible only when neededalways-off
: Scrollbar never shownalways-on
: Scrollbar always visible
The horizontal scroll bar visibility policy. The default value is ScrollBarPolicy.as-needed
.
Callbacks
scrolled()
Invoked when viewport-x
or viewport-y
is changed by a user action (dragging, scrolling).
© 2024 SixtyFPS GmbH