some more thoughts about state management

This commit is contained in:
Blue 2023-12-26 20:31:55 -03:00
parent 437e76067f
commit b38ed2107b
Signed by: blue
GPG key ID: 9B203B252A63EE38
13 changed files with 125 additions and 13 deletions

View file

@ -0,0 +1,12 @@
qt_add_qml_module(magpieApplication
URI magpie.Application
VERSION 1.0
STATIC
RESOURCE_PREFIX /
OUTPUT_DIRECTORY ../magpie/Application
NO_PLUGIN
QML_FILES
Root.qml
)
target_link_libraries(magpie PRIVATE magpieApplication)

13
qml/Application/Root.qml Normal file
View file

@ -0,0 +1,13 @@
import QtQuick
import QtQuick.Controls
Page {
Label {
anchors.centerIn: parent
text: "Here we go!"
font {
pixelSize: 24
bold: true
}
}
}