~rpadovani/ubuntu-calculator-app/bottomLabel

« back to all changes in this revision

Viewing changes to app/components/HelloComponent.qml

  • Committer: Riccardo Padovani
  • Date: 2014-11-26 08:38:19 UTC
  • Revision ID: riccardo@rpadovani.com-20141126083819-fhirarxu1spqpphy
Cleaned up the project

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
import QtQuick 2.0
2
 
import Ubuntu.Components 1.1
3
 
 
4
 
UbuntuShape {
5
 
    width: 200
6
 
    height: width
7
 
 
8
 
    property alias text : myText.text
9
 
 
10
 
    Label {
11
 
        id: myText
12
 
        anchors.centerIn: parent
13
 
    }
14
 
}
15