Spectral/qml/Home.qml

18 lines
308 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 {
ContactListForm {
id: contactListForm
height: parent.height
width: 320
}
ChatForm {
id: chatForm
anchors.fill: parent
anchors.leftMargin: contactListForm.width
}
}