19 lines
260 B
QML
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
|
|
|
|
}
|
|
|
|
|
|
}
|