aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qmltest/listview/data/asyncloadercurrentindex.qml
blob: 25976d52468dcf961f18eb57b39a522ada97a1ba (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 BSD-3-Clause

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
      }
    }
}