mirror of
https://github.com/HenkKalkwater/harbour-sailfin.git
synced 2024-11-15 05:55:18 +00:00
13 lines
375 B
QML
13 lines
375 B
QML
|
import QtQuick 2.6
|
||
|
import Sailfish.Silica 1.0
|
||
|
|
||
|
Rectangle {
|
||
|
property real shimOpacity: 1.0
|
||
|
property color shimColor: Theme.overlayBackgroundColor
|
||
|
gradient: Gradient {
|
||
|
GradientStop { position: 0.0; color: Theme.rgba(shimColor, 0.0); }
|
||
|
GradientStop { position: 1.0; color: Theme.rgba(shimColor, shimOpacity); }
|
||
|
}
|
||
|
|
||
|
}
|