Files
pyGUI/src/pygui/ISC/Main.qml
T

21 lines
420 B
QML

import QtQuick.Window
import ISC
// ===== App Window Shell =====
Window {
// ===== Window Dimensions =====
width: 1920
height: 1080
minimumWidth: 1100
minimumHeight: 700
visible: true
title: qsTr("ISenseCloud")
// Keep the window file very small.
// Styling and layout now live in HomePage.qml.
// ===== Root Page Mount =====
HomePage {
anchors.fill: parent
}
}