2021-09-09 14:33:57 +03:00
|
|
|
import QtQml 2.15
|
|
|
|
import QtQuick 2.15
|
|
|
|
import Style 1.0
|
|
|
|
|
|
|
|
Column {
|
|
|
|
id: unifiedSearchResultsListViewSkeletonColumn
|
|
|
|
|
2022-07-11 18:52:31 +03:00
|
|
|
property int animationRectangleWidth: Style.trayWindowWidth
|
|
|
|
|
2021-09-09 14:33:57 +03:00
|
|
|
Repeater {
|
2022-07-11 18:52:31 +03:00
|
|
|
model: Math.ceil(unifiedSearchResultsListViewSkeletonColumn.height / Style.trayWindowHeaderHeight)
|
2021-09-09 14:33:57 +03:00
|
|
|
UnifiedSearchResultItemSkeleton {
|
|
|
|
width: unifiedSearchResultsListViewSkeletonColumn.width
|
2022-07-11 18:52:31 +03:00
|
|
|
height: Style.trayWindowHeaderHeight
|
|
|
|
animationRectangleWidth: unifiedSearchResultsListViewSkeletonColumn.animationRectangleWidth
|
2021-09-09 14:33:57 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|