~djfun/+junk/UbuntuPhoneAkari

« back to all changes in this revision

Viewing changes to UbuntuPhoneAkari.qml

  • Committer: Martin Kaistra
  • Date: 2013-03-07 23:23:02 UTC
  • Revision ID: martin@djfun.de-20130307232302-brnfj8t1ttnn5zlt
initial commit

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
MainView {
 
5
  id: root
 
6
  applicationName: "UbuntuPhoneAkari"
 
7
 
 
8
  width: units.gu(40)
 
9
  height: units.gu(71)
 
10
  Tabs {
 
11
    ItemStyle.class: "new-tabs"
 
12
    id: tabs
 
13
    anchors.fill: parent
 
14
    Tab {
 
15
      title: "Akari Game"
 
16
      page: Game {}
 
17
    }
 
18
    Tab {
 
19
      title: "Akari Help"
 
20
      page: Help {}
 
21
    }
 
22
    Tab {
 
23
      title: "Akari Settings"
 
24
      page: Settings {}
 
25
    }
 
26
  }
 
27
}