fixedloader

This commit is contained in:
2024-11-05 16:26:14 +01:00
parent 4ecec8e25b
commit 493270efc1
8 changed files with 68 additions and 132 deletions

15
gui/Dashboard.qml Normal file
View File

@@ -0,0 +1,15 @@
import QtQuick
import QtQuick.Controls
import QtQuick.Layouts
ColumnLayout
{
Item
{
Component.onCompleted:
{
appLoader.source = "firststart.qml"
appLoader.window.title = "pyqcrm"
}
}
}