Files
pyqcrm/gui/start.qml
2024-10-30 16:27:41 +01:00

19 lines
260 B
QML

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