tests/auto/declarative/qdeclarativeflickable/data/flickable04.qml
changeset 30 5dc02b23752f
child 33 3e2da88830cd
equal deleted inserted replaced
29:b72c6db6890b 30:5dc02b23752f
       
     1 import Qt 4.7
       
     2 
       
     3 Flickable {
       
     4     width: 100; height: 100
       
     5     contentWidth: column.width; contentHeight: column.height
       
     6     pressDelay: 200; boundsBehavior: Flickable.StopAtBounds; interactive: false
       
     7     maximumFlickVelocity: 2000
       
     8 
       
     9     Column {
       
    10         id: column
       
    11         Repeater {
       
    12             model: 4
       
    13             Rectangle { width: 200; height: 300; color: "blue" }
       
    14         }
       
    15     }
       
    16 }