qt6-bb10/qtdeclarative/tests/benchmarks/quickcontrols/qmlbench/creation/delegates_tabbar.qml

24 lines
483 B
QML

import QtQuick
import QmlBench
import QtQuick.Controls
CreationBenchmark {
id: root
count: 20
staticCount: 250
delegate: TabBar {
x: QmlBench.getRandom() * root.width - width
y: QmlBench.getRandom() * root.height - height
currentIndex: index / root.staticCount * count
TabButton {
text: "Tab1"
}
TabButton {
text: "Tab2"
}
TabButton {
text: "Tab3"
}
}
}