C++ / fmt (pull_request) Successful in 4s
JS/TS / lint (pull_request) Successful in 19s
JS/TS / fmt (pull_request) Successful in 21s
Python / fmt (pull_request) Successful in 30s
Python / lint (pull_request) Successful in 31s
Python / test (pull_request) Successful in 1m2s
Python / typecheck (pull_request) Failing after 1m5s
Rust / fmt (pull_request) Successful in 43s
C++ / build (pull_request) Successful in 2m25s
Rust / build (pull_request) Successful in 1m42s
Python / buildcheck (pull_request) Successful in 2m27s
Rust / clippy (pull_request) Successful in 1m29s
C++ / clang-tidy (pull_request) Successful in 3m56s
25 lines
406 B
QML
25 lines
406 B
QML
import QtQuick
|
|
|
|
QtObject {
|
|
id: root
|
|
|
|
property real idx1: index
|
|
property int idx1Duration: 100
|
|
property real idx2: index
|
|
property int idx2Duration: 300
|
|
required property int index
|
|
|
|
Behavior on idx1 {
|
|
NumberAnimation {
|
|
duration: root.idx1Duration
|
|
easing.type: Easing.OutSine
|
|
}
|
|
}
|
|
Behavior on idx2 {
|
|
NumberAnimation {
|
|
duration: root.idx2Duration
|
|
easing.type: Easing.OutSine
|
|
}
|
|
}
|
|
}
|