mirror of
https://github.com/HenkKalkwater/harbour-sailfin.git
synced 2024-11-16 14:35:17 +00:00
24 lines
599 B
QML
24 lines
599 B
QML
|
import QtQuick 2.0
|
||
|
import Sailfish.Silica 1.0
|
||
|
|
||
|
import "../../components"
|
||
|
|
||
|
VideoPage {
|
||
|
title: itemData.currentProgram.name
|
||
|
subtitle: qsTr("%1 | %2 - %3")
|
||
|
.arg(itemData.name)
|
||
|
.arg(Qt.formatTime(itemData.currentProgram.startDate))
|
||
|
.arg(Qt.formatTime(itemData.currentProgram.endDate))
|
||
|
|
||
|
SectionHeader {
|
||
|
text: qsTr("Program info")
|
||
|
}
|
||
|
|
||
|
PlainLabel {
|
||
|
id: overviewText
|
||
|
text: itemData.currentProgram.overview || qsTr("No program info available")
|
||
|
font.pixelSize: Theme.fontSizeSmall
|
||
|
color: Theme.secondaryHighlightColor
|
||
|
}
|
||
|
}
|