import QtQuick 2.15 import QtQuick.Controls 2.15 import "qicpos" Rectangle { color: "#0a0a0a" ListView { anchors.fill: parent objectName: "catalog" model: catalog spacing: 16 delegate: ProductForm { width: 328 height: 132 color: "#2a2a2a" anchors.horizontalCenter: parent.horizontalCenter previewImage { width: 64 height: 64 source: imageDir + "thumb/" + image } nameLabel.text: description priceLabel.text: price } ScrollBar.horizontal: ScrollBar {} } }