mirror of
https://github.com/HenkKalkwater/harbour-sailfin.git
synced 2024-11-15 05:55:18 +00:00
Chris Josten
5d395ad7b6
* There is a basic collection page, allowing the user to browse through collections. It has a sort function, that sort of works * Item cards now show a bar indicating play time * Item cards now have a black/white (depending on theme) shim, improving readability. * The resume watching section now actually loads items
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); }
|
|
}
|
|
|
|
}
|