BusyStressTest.qml 286 B

123456789101112131415161718
  1. import QtQuick 2.0
  2. import "../QUItIndicators"
  3. Flow {
  4. id: root
  5. height: childrenRect.height
  6. Repeater {
  7. model: 162
  8. BusyIndicator {
  9. size: "small"
  10. running: true
  11. invertedTheme: Math.floor(Math.random()+0.5)
  12. }
  13. }
  14. }