summaryrefslogtreecommitdiffstats
path: root/tests/main/builtin-apps/hello-world.red/main.qml
blob: 67fa68b9acc5195f39d78bbc273e1e27b148cd62 (plain)
1
2
3
4
5
6
7
8
9
10
11
import QtQuick 2.4
import QtApplicationManager 1.0

ApplicationManagerWindow {
    color: "red"

    Text {
        anchors.centerIn: parent
        text: "Hello World!"
    }
}