Widget.qml 238 B

123456789101112131415
  1. import QtQuick 2.6
  2. Item {
  3. width: childrenRect.width
  4. height: childrenRect.height
  5. property alias text: label.text
  6. Text {
  7. id: label
  8. font.pixelSize: 40
  9. font.bold: true
  10. color: "white"
  11. }
  12. }