19 lines
312 B
QML
Raw Normal View History

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