Files
pyqcrm/gui/main.qml
2024-11-04 16:44:12 +01:00

34 lines
659 B
QML

import QtQuick
import QtQuick.Controls
import QtQuick.Controls.Material
ApplicationWindow
{
id: appWindow
width: Screen.width * .6
height: Screen.height * .6
visible: true
Material.theme: Material.Dark
Material.accent: Material.BlueGrey
Material.primary: Material.Grey
title: "PYQCRM"
Loader
{
id: appLoader
anchors.fill: parent
// {
// left: parent.left
// right: parent.right
// top: parent.top
// bottom: parent.bottom
// }
source: bad_config? "firststart.qml":"Start.qml"
property alias window: appWindow
}
}