29 lines
605 B
QML
29 lines
605 B
QML
|
import QtQuick.Controls 2.2
|
||
|
import QtQuick.Layouts 1.4
|
||
|
|
||
|
RowLayout {
|
||
|
anchors.fill: parent
|
||
|
spacing: 0
|
||
|
|
||
|
RoomPane {}
|
||
|
|
||
|
StackView {
|
||
|
function show_room(room_obj) {
|
||
|
pageStack.replace("ChatPage.qml", { room: room_obj })
|
||
|
}
|
||
|
|
||
|
id: "pageStack"
|
||
|
Layout.fillWidth: true
|
||
|
Layout.fillHeight: true
|
||
|
//initialItem: HomePage {}
|
||
|
initialItem: ChatPage { room: Backend.roomsModel.get(0) }
|
||
|
|
||
|
onCurrentItemChanged: currentItem.forceActiveFocus()
|
||
|
|
||
|
// Buggy
|
||
|
replaceExit: null
|
||
|
popExit: null
|
||
|
pushExit: null
|
||
|
}
|
||
|
}
|