update WWW
[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: 10
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
22     /*Rectangle {
23         y:0
24         color: "black"
25         height: 1
26         width: root.width
27         opacity: 0.5
28         //anchors.bottom: root.bottom
29     }
30     Rectangle {
31         y:3
32         color: "black"
33         height: 1
34         width: root.width
35         opacity: 0.2
36         //anchors.bottom: root.bottom
37     }*/
38 }