aboutsummaryrefslogtreecommitdiffstats
path: root/examples/aglextras/helloworld/qml/helloworld/main.qml
blob: f0c5be1ac0b31e621381cfb7576a8a66a0c75066 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import QtQuick 2.0

Rectangle {
  id: page
  width: 320; height: 480
  color: "lightgray"

  Text {
    id: helloText
    text: "Hello world!"
    y: 30
    anchors.horizontalCenter: page.horizontalCenter
    font.pointSize: 24; font.bold: true
  }
}