~ahayzen/+junk/test-mediaplayer-app

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import QtQuick 2.0
import Ubuntu.Components 0.1

UbuntuShape {
    width: 200
    height: width

    property alias text : myText.text

    Label {
        id: myText
        anchors.centerIn: parent
    }
}