~nik90/cliffhanger/convergence-1

« back to all changes in this revision

Viewing changes to components/HelloComponent.qml

  • Committer: Nekhelesh Ramananthan
  • Date: 2013-11-10 12:45:09 UTC
  • mto: This revision was merged to the branch mainline in revision 4.
  • Revision ID: krnekhelesh@gmail.com-20131110124509-tm9cegstktd4l0dc
Added carousel and replaced boiler code with real code structure

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
import QtQuick 2.0
2
 
import Ubuntu.Components 0.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
 
}