how to remove rows in loop?
like this video:
hazf.gif

my code:
Qt Code:
  1. import QtQuick 2.0
  2.  
  3. Rectangle {
  4. id: base;
  5. width:600;
  6. height: 800;
  7.  
  8. Column {
  9. spacing: 5;
  10.  
  11. Repeater {
  12. model: 5;
  13. delegate: Rectangle {
  14. width: 100;
  15. height: 20;
  16. color: "white";
  17. border { width: 1; color: "black" }
  18. radius: 3;
  19.  
  20. Image
  21. {
  22. id: hazf
  23. source: "pic/hazf.gif"
  24. width:20
  25. height:20
  26. }
  27.  
  28. }
  29. }
  30. }
  31. }
To copy to clipboard, switch view to plain text mode