Files
WallReel/WallReel/UI/Main.qml
T
2026-02-25 22:41:50 +01:00

33 lines
654 B
QML

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("WallReel")
LoadingScreen {
visible: ImageModel.isLoading
anchors.fill: parent
currentValue: ImageModel.processedCount
totalValue: ImageModel.totalCount
}
Loader {
anchors.fill: parent
active: !ImageModel.isLoading
sourceComponent: CarouselScreen {
}
}
}