HelpForm.ui.qml 408 B

1234567891011121314151617181920
  1. import QtQuick 2.12
  2. import QtQuick.Controls 2.5
  3. Page {
  4. width: 1280
  5. height: 470
  6. Text {
  7. id: helpPlaceholder
  8. x: 220
  9. y: 135
  10. width: 840
  11. height: 200
  12. color: "#ffffff"
  13. text: qsTr("Tons of useful information goes here")
  14. horizontalAlignment: Text.AlignHCenter
  15. verticalAlignment: Text.AlignVCenter
  16. font.pixelSize: 40
  17. }
  18. }