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

ApplicationManagerWindow {
    color: "red"

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