Files
pyqcrm/gui/start.qml

19 lines
270 B
QML

import QtQuick
import QtQuick.Controls
Item
{
anchors.fill: parent
Component.onCompleted:
{
appLoader.window.title = "pyqcrm"
appLoader.window.height = Screen.height * .5
appLoader.window.width = Screen.width * .5
}
}