2018-02-23 14:39:14 +00:00
|
|
|
import QtQuick 2.10
|
|
|
|
import QtQuick.Controls 2.3
|
|
|
|
import "qrc:/qml/form"
|
|
|
|
|
|
|
|
Page {
|
2018-02-28 09:10:42 +00:00
|
|
|
property var roomListModel
|
|
|
|
|
|
|
|
RoomListForm {
|
2018-02-28 13:11:42 +00:00
|
|
|
id: roomListForm
|
2018-02-23 14:39:14 +00:00
|
|
|
height: parent.height
|
|
|
|
width: 320
|
2018-02-28 13:11:42 +00:00
|
|
|
listModel: roomListModel
|
2018-02-23 14:39:14 +00:00
|
|
|
}
|
|
|
|
|
2018-02-28 13:11:42 +00:00
|
|
|
RoomForm {
|
|
|
|
id: roomForm
|
2018-02-23 14:39:14 +00:00
|
|
|
anchors.fill: parent
|
2018-02-28 13:11:42 +00:00
|
|
|
anchors.leftMargin: roomListForm.width
|
2018-02-23 14:39:14 +00:00
|
|
|
}
|
|
|
|
}
|