Add time information to the messages

This commit is contained in:
Carl Schwan
2020-11-22 19:05:40 +01:00
parent 5316e32004
commit 06d1be146e

View File

@@ -81,6 +81,7 @@ RowLayout {
id: column
spacing: Kirigami.Units.smallSpacing
RowLayout {
QQC2.Label {
Layout.fillWidth: true
topInset: 0
@@ -92,6 +93,13 @@ RowLayout {
color: author.color
wrapMode: Text.Wrap
}
QQC2.Label {
visible: showAuthor
text: time.toLocaleTimeString(Locale.ShortFormat)
color: Kirigami.Theme.disabledTextColor
}
}
Loader {
id: replyLoader
source: 'qrc:imports/NeoChat/Component/Timeline/ReplyComponent.qml'