Widget.qml 291 B

123456789101112131415161718
  1. import QtQuick 2.6
  2. // Required for effortless web serving!
  3. import ".."
  4. Item {
  5. width: childrenRect.width
  6. height: childrenRect.height
  7. property alias text: label.text
  8. Text {
  9. id: label
  10. font.pixelSize: 40
  11. font.bold: true
  12. color: "white"
  13. }
  14. }