diff options
Diffstat (limited to 'qml/mw-ui.qml')
-rw-r--r-- | qml/mw-ui.qml | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/qml/mw-ui.qml b/qml/mw-ui.qml index 6133b7c..0b7b68d 100644 --- a/qml/mw-ui.qml +++ b/qml/mw-ui.qml @@ -8,12 +8,20 @@ import QtGraphicalEffects 1 Rectangle { id: box - width: 1000; height: 700 + width: 1000; height: 650 property alias view: view Rectangle { id: banner - color: "lightgray" width: parent.width;height: 120 + LinearGradient { + anchors.fill: parent + start: Qt.point(0, 0) + end: Qt.point(0, 300) + gradient: Gradient { + GradientStop { position: 0.0; color: "lightgray" } + GradientStop { position: 1.0; color: "white" } + } + } Image { anchors.fill: parent |