import QtQuick 2.12 import QtQuick.Window 2.12 import QtQuick.Controls 2.0 import QtQuick.Layouts 1.0 Page { header: CustToolbar { title: qsTr("Contacts") ToolButton { text: qsTr("+") anchors.left: parent.left } } ListView { width: parent.width model: ["Alice", "Bob"] anchors.fill: parent delegate: ItemDelegate { width: parent.width text: modelData onClicked: stack.push("qrc:/ChatView.qml", { destination: modelData }) } } }