WidgetTray.qml 280 B

1234567891011121314151617181920
  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. ItemCount {
  13. }
  14. FPS {
  15. }
  16. }
  17. }