summaryrefslogtreecommitdiff
path: root/tests/benchmarks/ButtonRowBenchmark.qml
blob: ebe8849430e58365d629707727d5b392982c8290 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import QtQuick 1.0
import QmlTime 1.0 as QmlTime
import "../../components" as QtComponents

Item {
    QmlTime.Timer {
        component: QtComponents.ButtonRow {
           QtComponents.Button { text: "Button A" }
           QtComponents.Button { text: "Buttom B" }
           QtComponents.Button { text: "Bottom C" }
        }
    }
}