moment/harmonyqml/components/chat/Root.qml

19 lines
312 B
QML
Raw Normal View History

2019-03-22 14:28:14 +11:00
import QtQuick 2.7
import QtQuick.Controls 2.2
import QtQuick.Layouts 1.4
ColumnLayout {
2019-04-15 02:56:30 +10:00
property var user_id: null
2019-03-22 14:28:14 +11:00
property var room: null
2019-04-15 06:12:07 +10:00
2019-03-22 14:28:14 +11:00
id: chatPage
spacing: 0
onFocusChanged: sendBox.setFocus()
RoomHeader {}
MessageList {}
2019-04-15 06:12:07 +10:00
TypingUsersBar {}
2019-03-22 14:28:14 +11:00
SendBox { id: sendBox }
}