11 lines
255 B
QML
11 lines
255 B
QML
import QtQuick 2.9
|
|
import QtQuick.Controls 2.2
|
|
|
|
Label {
|
|
text: section + " • " + Qt.formatTime(time, "hh:mm")
|
|
font.pointSize: 9.75
|
|
font.weight: Font.Medium
|
|
font.capitalization: Font.AllUppercase
|
|
verticalAlignment: Text.AlignVCenter
|
|
}
|