import QtQuick Item { id: myItem required property string name required property string info property int fontSize: 16 width: parent.width height: 40 Column { Text { text: 'Name: ' + myItem.name } Text { text: 'Info: ' + myItem.info } } }