Files
pyqcrm/gui/main.qml
2024-11-06 09:17:09 +01:00

40 lines
619 B
QML

import QtQuick
import QtQuick.Controls
ApplicationWindow
{
id: appWindow
width: Screen.width * .6
height: Screen.height * .6
visible: true
title: "PYQCRM"
TopBar
{
id:topBar
visible: bad_config? false: true
}
Item
{
id: mainView
}
Loader
{
id: appLoader
anchors
{
left: parent.left
right: parent.right
top: topBar.bottom
bottom: parent.bottom
}
source: bad_config? "firststart.qml": "Dashboard.qml"
property alias window: appWindow
}
}