InfoTray.qml 346 B

123456789101112131415161718192021222324
  1. import QtQuick 2.6
  2. Item {
  3. width: childrenRect.width
  4. height: childrenRect.height
  5. Rectangle {
  6. anchors.fill: parent
  7. opacity: 0.5
  8. color: "black"
  9. }
  10. Row {
  11. spacing: 10.0
  12. Resolution {
  13. }
  14. ItemCount {
  15. }
  16. FPS {
  17. }
  18. CollectionSize {
  19. }
  20. }
  21. }