Hiii everyOne,

See the code below:
Qt Code:
  1. Item{
  2. width: 600
  3. height: 500
  4.  
  5. Rectangle{
  6. width: parent.width
  7. height: 400
  8. color: "#710909"
  9. anchors.bottom: parent.bottom
  10. Flickable{
  11. anchors.fill: parent
  12. contentWidth: parent.width
  13. contentHeight: parent.height*3
  14. Rectangle {
  15. id: GreenRectangle
  16. x: 200
  17. y: 106
  18. width: 200
  19. height: 200
  20. color: "green"
  21. }
  22. }
  23. }
  24. }
To copy to clipboard, switch view to plain text mode 

Why the object GreenRectangle exceeds the limit of Flickable ... see image : fl.png
Any solution ?