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