558fba07a6
hw.qml: findChild uses objectName; so added it.
18 lines
314 B
QML
18 lines
314 B
QML
import QtQuick 2.0
|
|
|
|
Rectangle {
|
|
id: page
|
|
width: 320; height: 480
|
|
color: "lightgray"
|
|
|
|
Text {
|
|
id: helloText
|
|
objectName: "helloText"
|
|
text: "Hello world!"
|
|
y: 30
|
|
anchors.horizontalCenter: page.horizontalCenter
|
|
font.pointSize: 24; font.bold: true
|
|
}
|
|
}
|
|
|