mirror of
https://github.com/HenkKalkwater/harbour-sailfin.git
synced 2024-11-15 22:15: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
12 lines
354 B
QML
12 lines
354 B
QML
pragma Singleton
|
|
import QtQuick 2.6
|
|
import Sailfish.Silica 1.0
|
|
|
|
QtObject {
|
|
readonly property real libraryDelegateWidth: Screen.width / 3
|
|
readonly property real libraryDelegateHeight: Screen.width / 3
|
|
|
|
readonly property real libraryDelegatePosterHeight: Screen.width / 2
|
|
readonly property real libraryProgressHeight: Theme.paddingMedium
|
|
}
|