Resolution.qml 253 B

12345678910111213
  1. import QtQuick 2.6
  2. Widget {
  3. width: resolutionLabel.width
  4. height: resolutionLabel.height
  5. Text {
  6. id: resolutionLabel
  7. font.pixelSize: 100
  8. text: screenSize.width + "x" + screenSize.height
  9. color: "white"
  10. }
  11. }