21 lines
419 B
QML
21 lines
419 B
QML
import QtQuick.Window
|
|
import ISC
|
|
|
|
// ===== App Window Shell =====
|
|
Window {
|
|
// ===== Window Dimensions =====
|
|
width: 1400
|
|
height: 820
|
|
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
|
|
}
|
|
}
|