moment/src/qml/Chat/TypingMembersBar.qml

20 lines
407 B
QML
Raw Normal View History

2019-04-15 06:12:07 +10:00
import QtQuick 2.7
import QtQuick.Layouts 1.3
import "../Base"
2019-04-15 06:12:07 +10:00
HRectangle {
color: HStyle.chat.typingMembers.background
2019-04-15 06:12:07 +10:00
Layout.fillWidth: true
2019-07-06 09:54:16 +10:00
Layout.preferredHeight: usersLabel.text ? usersLabel.implicitHeight : 0
HLabel {
id: usersLabel
2019-04-15 06:12:07 +10:00
anchors.fill: parent
2019-07-06 09:54:16 +10:00
text: chatPage.roomInfo.typingText
2019-04-15 06:12:07 +10:00
elide: Text.ElideMiddle
maximumLineCount: 1
}
}