~loic.molinari/+junk/qtdeclarative-shadereffectsource-changes

« back to all changes in this revision

Viewing changes to tests/auto/quick/qquickflickable/data/margins.qml

  • Committer: Loïc Molinari
  • Date: 2012-04-21 17:59:51 UTC
  • Revision ID: loic.molinari@canonical.com-20120421175951-bqx68caaf5zrp76l
Initial import

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
import QtQuick 2.0
 
2
 
 
3
Flickable {
 
4
    width: 200; height: 200
 
5
    contentWidth: row.width; contentHeight: row.height
 
6
 
 
7
    topMargin: 20
 
8
    bottomMargin: 30
 
9
    leftMargin: 40
 
10
    rightMargin: 50
 
11
 
 
12
    Row {
 
13
        id: row
 
14
        Repeater {
 
15
            model: 4
 
16
            Rectangle { width: 400; height: 600; color: "blue" }
 
17
        }
 
18
    }
 
19
}