aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/snippets/data/tumbler/qtquickcontrols2-tumbler-contentItem.qml
blob: 51a0a7bb9a8ca4f5891d571a987bc1e21095325e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import QtQuick 2.0
import QtQuick.Controls 2.0

Tumbler {
    model: 5

    Rectangle {
        anchors.fill: parent.contentItem
        color: 'transparent'
        border.color: 'red'
    }
}