aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquickpositioners/data/rectangleComponent.qml
blob: de1bb995933ae1e1cf52e93592495c71988fd9f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
import QtQuick 2.0;

Rectangle {
  objectName: "rect2"
  color: "blue"
  width: 100
  height: 100
  property int index: Positioner.index
  property bool firstItem: Positioner.isFirstItem
  property bool lastItem: Positioner.isLastItem
}