magpie/qml/Application/Root.qml

14 lines
202 B
QML

import QtQuick
import QtQuick.Controls
Page {
Label {
anchors.centerIn: parent
text: "Here we go!"
font {
pixelSize: 24
bold: true
}
}
}