summaryrefslogtreecommitdiffstats
path: root/flickablelist/main.qml
blob: ae1b4d3d075ec9f1ead7aae2a7294a3ceb5f267a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import Qt 4.7
import Qt.labs.gestures 2.0

Rectangle {
    width: 200
    height: 200
    color: "#ff0000"

    Flickable {
        id: flickable
        anchors.fill: parent
        contentWidth: flicktarget.width; contentHeight: flicktarget.height
        flickableDirection: "VerticalFlick"

        Cols {
            id: flicktarget
            width: flickable.width
        }

    }
}