2022-05-13 13:12:05 +00:00
|
|
|
// Copyright (C) 2017 The Qt Company Ltd.
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
2012-02-02 23:28:00 +00:00
|
|
|
|
2022-08-31 07:59:05 +00:00
|
|
|
import QtQuick
|
2021-08-31 11:11:11 +00:00
|
|
|
import shared as Examples
|
2012-02-20 00:34:44 +00:00
|
|
|
|
2012-02-02 23:28:00 +00:00
|
|
|
Item {
|
|
|
|
height: 480
|
|
|
|
width: 320
|
2012-02-20 00:34:44 +00:00
|
|
|
Examples.LauncherList {
|
2012-02-02 23:28:00 +00:00
|
|
|
id: ll
|
|
|
|
anchors.fill: parent
|
|
|
|
Component.onCompleted: {
|
|
|
|
addExample("ColorAnimation", "Interpolates between colors", Qt.resolvedUrl("basics/color-animation.qml"));
|
|
|
|
addExample("PropertyAnimation", "Interpolates between numbers", Qt.resolvedUrl("basics/property-animation.qml"));
|
2013-09-30 13:33:57 +00:00
|
|
|
addExample("Animators", "Using Animators", Qt.resolvedUrl("basics/animators.qml"));
|
2012-02-02 23:28:00 +00:00
|
|
|
addExample("Behaviors", "Animates procedural movement", Qt.resolvedUrl("behaviors/behavior-example.qml"));
|
2012-02-20 00:34:44 +00:00
|
|
|
addExample("Wiggly Text", "Text that wiggles as you drag it", Qt.resolvedUrl("behaviors/wigglytext.qml"));
|
2012-02-28 01:30:16 +00:00
|
|
|
addExample("Tv Tennis", "Paddles that follow a ball", Qt.resolvedUrl("behaviors/tvtennis.qml"));
|
2012-02-02 23:28:00 +00:00
|
|
|
addExample("Easing Curves", "Compare available easing curves", Qt.resolvedUrl("easing/easing.qml"));
|
|
|
|
addExample("States", "Simple states", Qt.resolvedUrl("states/states.qml"));
|
|
|
|
addExample("Transitions", "Simple states with animated transitions", Qt.resolvedUrl("states/transitions.qml"));
|
|
|
|
addExample("PathAnimation", "Animate along a path", Qt.resolvedUrl("pathanimation/pathanimation.qml"));
|
|
|
|
addExample("PathInterpolator", "Interpolates along a path", Qt.resolvedUrl("pathinterpolator/pathinterpolator.qml"));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|