ListView, any tutorial?

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By jospic
:warning: Old Version Published before Godot 3 was released.

Godot is an engine born for games. It 's true, but it’s very powerful for building applications too. Unfortunately around I do not find any tutorial that teaches how to use the UI objects (panel, treeview, itemlist, ect.).
For example, how to make a list of scrollable and clickable buttons, like this?

https://api.jquerymobile.com/resources/listview/example1.html

Probably with VButtonArray control, but how to implement this?

Thanks in advance.
-j

Maybe VBoxContainer could be better, put it inside a ScrollContainer.
I have never got good results with button arrays.

eons | 2017-01-31 12:34

:bust_in_silhouette: Reply From: volzhs
- ScrollContainer (only Vertical On)
    - VBoxContainer
        - Button
        - Button
        - Button
        - ....