diff options
| author | Lucie Gérard <lucie.gerard@qt.io> | 2023-11-15 15:12:39 +0100 |
|---|---|---|
| committer | Lucie Gérard <lucie.gerard@qt.io> | 2023-11-28 19:18:41 +0100 |
| commit | 6c3947e8c58fbba812eb6c204ef3947fd1c13bfc (patch) | |
| tree | 93a5dd599a39bd8cd0167e547ff2efd1736f6642 /src/quick/doc/snippets/qml | |
| parent | feb1f1ec721b4a61fcc5639b068b28ad20b790a7 (diff) | |
Remove qml locale and dynamicscene examples
locale example has no documentation
dynamicscene example does not promote good behavior
Task-number: QTBUG-119117
Change-Id: I782375e2ac50b73535d51a031711222efc15b3ad
Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io>
Diffstat (limited to 'src/quick/doc/snippets/qml')
| -rw-r--r-- | src/quick/doc/snippets/qml/transition-animation.qml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/quick/doc/snippets/qml/transition-animation.qml b/src/quick/doc/snippets/qml/transition-animation.qml new file mode 100644 index 0000000000..a0482018ad --- /dev/null +++ b/src/quick/doc/snippets/qml/transition-animation.qml @@ -0,0 +1,13 @@ +// Copyright (C) 2017 The Qt Company Ltd. +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause +import QtQuick + + +Item { +//![0] + transitions: Transition { + PropertyAnimation { duration: 3000 } + ColorAnimation { duration: 3000 } + } +//![0] +} |
