aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qmltest/listview/data/asyncloadercurrentindex.qml
blob: ec2cb6c24cac67df48fa271ad9174ecf6e8fed9f (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
26
27
// Copyright (C) 2017 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only

import QtQuick 2.0

Rectangle {
    color: "black"

    Rectangle {
      color: "red"

      height: 150
      width: 150

      anchors {
          horizontalCenter: parent.horizontalCenter
          verticalCenter: parent.verticalCenter
      }

      NumberAnimation on rotation {
          from: 0
          to: 360
          duration: 5000
          loops: Animation.Infinite
      }
    }
}