Initial commit
[ubi] / qml / ubi / Shadow.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 }