Spectral/qml/Home.qml

18 lines
299 B
QML
Raw Normal View History

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
RoomListForm {
id: roomListForm
2018-02-23 14:39:14 +00:00
height: parent.height
width: 320
}
2018-02-28 09:10:42 +00:00
RoomForm {
id: roomForm
2018-02-23 14:39:14 +00:00
anchors.fill: parent
2018-02-28 09:10:42 +00:00
anchors.leftMargin: roomListForm.width
2018-02-23 14:39:14 +00:00
}
}