~nik90/cliffhanger/convergence-1

« back to all changes in this revision

Viewing changes to ui/HelloTab.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
 
import "../components"
4
 
 
5
 
Tab {
6
 
    title: i18n.tr("Hello..")
7
 
 
8
 
    page: Page {
9
 
        Column {
10
 
            spacing: units.gu(2)
11
 
            anchors.centerIn: parent
12
 
 
13
 
            HelloComponent {
14
 
                objectName: "helloTab_HelloComponent"
15
 
 
16
 
                anchors.horizontalCenter: parent.horizontalCenter
17
 
 
18
 
                text: i18n.tr("HelloTab")
19
 
            }
20
 
 
21
 
            Label {
22
 
                objectName: "helloTab_label"
23
 
 
24
 
                anchors.horizontalCenter: parent.horizontalCenter
25
 
 
26
 
                text: i18n.tr("You can change the Tab from Page title above.")
27
 
            }
28
 
        }
29
 
    }
30
 
}