~rpadovani/ubuntu-calculator-app/cleanUp

« back to all changes in this revision

Viewing changes to app/ui/HelloTab.qml

  • Committer: Bartosz Kosiorek
  • Date: 2014-11-19 22:34:53 UTC
  • Revision ID: gang65@poczta.onet.pl-20141119223453-gpcjrqbss4vtbiuh
Initial GUI design according to new design

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
import QtQuick 2.0
2
 
import Ubuntu.Components 1.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("Hello World")
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
 
}
31