~ubuntu-branches/ubuntu/vivid/qtcreator-plugin-ubuntu/vivid

« back to all changes in this revision

Viewing changes to share/qtcreator/ubuntu/devicespage/test.qml#

  • Committer: Package Import Robot
  • Author(s): Ubuntu daily release, Benjamin Zeller
  • Date: 2015-01-30 06:05:59 UTC
  • mfrom: (1.1.81)
  • Revision ID: package-import@ubuntu.com-20150130060559-1kirdtmm6bl6eb26
Tags: 3.1.1+15.04.20150130-0ubuntu1
[ Benjamin Zeller ]
Refactoring of the publish Tab

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
import QtQuick 2.0
2
 
import QtQuick.Layouts 1.0
3
 
import Ubuntu.Components 0.1
4
 
 
5
 
MainView {
6
 
    height: 640
7
 
    width: 480
8
 
 
9
 
    Page {
10
 
        title: "Hello World"
11
 
        ActivityIndicator {
12
 
            anchors.fill: parent
13
 
            visible: true
14
 
            running: true
15
 
        }
16
 
    }
17
 
 
18
 
}