0.9.3-1 release
[ubi] / qml / ubi / components / Line.qml
1 import QtQuick 1.0 // to target S60 5th Edition or Maemo 5
2 import "../UIConstants.js" as Const
3
4 Item {
5     id: root
6     height: 2
7
8     Row {
9         anchors.bottom: root.bottom
10         width: root.width
11         spacing: 5
12         Repeater {
13             model: root.width/6
14             Rectangle {
15                 color: Const.DEFAULT_FOREGROUND_COLOR
16                 height: 2
17                 width: 1
18             }
19         }
20     }
21 }