2021-09-09 14:33:57 +03:00
|
|
|
import QtQml 2.15
|
|
|
|
import QtQuick 2.15
|
|
|
|
import Style 1.0
|
|
|
|
|
|
|
|
Column {
|
|
|
|
id: unifiedSearchResultsListViewSkeletonColumn
|
|
|
|
|
|
|
|
Repeater {
|
|
|
|
model: 10
|
|
|
|
UnifiedSearchResultItemSkeleton {
|
|
|
|
width: unifiedSearchResultsListViewSkeletonColumn.width
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
OpacityAnimator {
|
2022-07-11 19:56:35 +03:00
|
|
|
target: unifiedSearchResultsListViewSkeletonColumn
|
|
|
|
from: 0.5
|
|
|
|
to: 1
|
2021-09-09 14:33:57 +03:00
|
|
|
duration: 800
|
|
|
|
running: unifiedSearchResultsListViewSkeletonColumn.visible
|
2022-07-11 19:56:35 +03:00
|
|
|
loops: Animation.Infinite
|
2021-09-09 14:33:57 +03:00
|
|
|
easing {
|
2022-07-11 19:56:35 +03:00
|
|
|
type: Easing.InOutBounce
|
2021-09-09 14:33:57 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|