summaryrefslogtreecommitdiffstats
path: root/doc/src/snippets/declarative/righttoleft/Child.qml
blob: 2b3564eb03f3603b8bc6044f5dc4238c2f53783c (plain)
1
2
3
4
5
6
7
8
9
10
11
import QtQuick 1.0

Rectangle {
    width: 50; height: 50
    color: "black"
    Text {
        color: "white"
        text: String.fromCharCode(65 + Math.floor(26*Math.random()))
        anchors.centerIn: parent
    }
}