I'm just starting to learn qml, and there are many questions. I have XmlListModel { id: listModel query: "/ colors / color" XmlRole {name: "id"; query: "id / string ()"} XmlRole {name: "title"; query: "title / string ()"} ... }
SilicaFlickable { anchors.fill: parent Column { width: parent.width; height: parent.height id: mainContainer SilicaListView { width: parent.width; height: parent.height id: list model: listModel delegate: BackgroundItem { width: parent.width; height: 120 Image { source: imageUrl anchors.fill: parent } Label {text: title} } VerticalScrollDecorator {} } } } How can I add other elements (buttons, labels ...) after all elements of SilicaListView, if its height: parent.height. If you remove line height: parent.height for SilicaListView, it is not displayed. There have been attempts to add other elements before VerticalScrollDecorator {} and other places (experimenting with anchors), but the added elements were in the upper left corner of the screen or on the last 10 points of the screen (under SilicaListView). Sorry for my English. PS. This is the only way to get or give help when working with qml + Silica? No forum for developers Sailfish?
_______________________________________________ SailfishOS.org Devel mailing list To unsubscribe, please send a mail to devel-unsubscr...@lists.sailfishos.org