~om26er/address-book-app/abook_navigation_favorites

« back to all changes in this revision

Viewing changes to src/imports/main.qml

  • Committer: Renato Araujo Oliveira Filho
  • Date: 2013-06-27 20:05:52 UTC
  • Revision ID: renato.filho@canonical.com-20130627200552-b115j5fcqfnpy7ez
First commit of Address Book Application

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/****************************************************************************
 
2
**
 
3
** Copyright (C) 2013 Canonical Ltd
 
4
**
 
5
****************************************************************************/
 
6
import QtQuick 2.0
 
7
import QtContacts 5.0
 
8
import Ubuntu.Components 0.1
 
9
 
 
10
MainView {
 
11
    id: mainView
 
12
 
 
13
    width: units.gu(40)
 
14
    height: units.gu(71)
 
15
 
 
16
    PageStack {
 
17
        id: mainStack
 
18
 
 
19
        anchors.fill: parent
 
20
    }
 
21
 
 
22
    Component.onCompleted: mainStack.push(Qt.resolvedUrl("ContactList.qml"))
 
23
}