UI update

This commit is contained in:
Digital Artifex
2026-08-17 01:03:00 -04:00
parent 9e8b6a70c8
commit 471c91e622
9 changed files with 216 additions and 92 deletions
+17 -8
View File
@@ -19,15 +19,15 @@ Item
imagesModel.state === FeaturedImagesModel.Loading ||
videosModel.state === FeaturedVideosModel.Loading;
onWidthChanged:() => {
onWidthChanged: () =>
{
packsModel.resultsPerPage = resultsPerRow
imagesModel.resultsPerPage = resultsPerRow
videosModel.resultsPerPage = resultsPerRow
}
clip: true
id: homePageRoot
clip: true
NewestPacksModel
{
@@ -394,9 +394,9 @@ Item
}
}
}
VerticalSpacer{}
}
VerticalSpacer{ height: Constants.largeMargin }
}
}
@@ -583,9 +583,7 @@ Item
},
State {
name: "idle"
when: packsModel.state !== NewestPacksModel.Loading &&
imagesModel.state !== FeaturedImagesModel.Loading &&
videosModel.state !== FeaturedVideosModel.Loading;
when: !popup && !loading
PropertyChanges
{
@@ -598,6 +596,17 @@ Item
target: pageArea
opacity: 1
}
},
State
{
name: "popup"
when: popup
PropertyChanges
{
target: pageArea
opacity: 0
}
}
]