Initial commit of ISC QtQuick application scaffold, including main application logic in , QML components for UI in directory, project metadata in , and runtime dependencies in . Added README for setup instructions and project structure overview.
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
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
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user