You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
356 B

import QtQuick 2.15
Row {
property alias name: name.text
property alias address: address.text
spacing: 40
Text {
id: name
font.pointSize: 42
anchors.verticalCenter: parent.verticalCenter
}
Text {
id: address
font.pointSize: 36
anchors.verticalCenter: parent.verticalCenter
}
}