This commit is contained in:
2026-02-16 14:22:03 +01:00
parent ad742a38bd
commit 9e088c2024
38 changed files with 934 additions and 1973 deletions
+33
View File
@@ -0,0 +1,33 @@
import QtQuick
import QtQuick.Controls
import WallReel.Core
import WallReel.UI.Pages
ApplicationWindow {
width: Config.windowWidth
height: Config.windowHeight
minimumWidth: width
maximumWidth: width
minimumHeight: height
maximumHeight: height
visible: true
title: qsTr("Hello World")
LoadingScreen {
visible: ImageModel.isLoading
anchors.fill: parent
currentValue: ImageModel.processedCount
totalValue: ImageModel.totalCount
}
Loader {
anchors.fill: parent
active: !ImageModel.isLoading
sourceComponent: CarouselScreen {
visible: !ImageModel.isLoading
}
}
}