moment/harmonyqml/components/chat/Root.qml

17 lines
286 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 {
property var user: null
2019-03-22 14:28:14 +11:00
property var room: null
id: chatPage
spacing: 0
onFocusChanged: sendBox.setFocus()
RoomHeader {}
MessageList {}
2019-03-22 14:28:14 +11:00
SendBox { id: sendBox }
}