Initial commit
[ubi] / qml / ubi / About.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     anchors.right: parent.right
7     anchors.left: parent.left
8
9     Rectangle {
10         anchors.right: parent.right
11         anchors.left: parent.left
12
13         height: Const.SHADOW_OFFSET
14         color: "black"
15         opacity: 0.4
16
17         /*height: Const.SYSTEM_BAR_HEIGHT + 3
18         y: 0
19         gradient: Gradient {
20             GradientStop { position: 0.9; color: "black" }
21             GradientStop { position: 1.0; color: Const.TRANSPARENT }
22         }*/
23     }
24 }