76b699ad64
Put QML components into folders, remove unused ones, split __init__.py with engine.py.
17 lines
286 B
QML
17 lines
286 B
QML
import QtQuick 2.7
|
|
import QtQuick.Controls 2.2
|
|
import QtQuick.Layouts 1.4
|
|
|
|
ColumnLayout {
|
|
property var user: null
|
|
property var room: null
|
|
|
|
id: chatPage
|
|
spacing: 0
|
|
onFocusChanged: sendBox.setFocus()
|
|
|
|
RoomHeader {}
|
|
MessageList {}
|
|
SendBox { id: sendBox }
|
|
}
|