aboutsummaryrefslogtreecommitdiffstats
path: root/benchmark/creation/delegates_buttoncontrol2.qml
blob: 660795e7295ee4bd4070100309c14cf8f5f33db3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import QtQuick 2.0
import QtQuick.Controls 2.0

Item {
    id: root;
    property int count: 20;

    property real t;
    NumberAnimation on t { from: 0; to: 1; duration: 1000; loops: Animation.Infinite }
    onTChanged: {
        repeater.model = 0;
        repeater.model = root.count
    }

    Component.onCompleted: repeater.model = root.count

    Repeater {
        id: repeater
        Button {
            x: Math.random() * root.width - width
            y: Math.random() * root.height - height
            text: "Item #" + index;
        }
    }
}