32 lines
622 B
QML
32 lines
622 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
|
|
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
|
|
}
|
|
|
|
|
|
|
|
}
|