import QtQuick 2.15 import QtQuick.Controls 2.15 ApplicationWindow { width: 640 height: 480 visible: true title: qsTr("Hello World") Navigator { id: navigator width: childrenRect.width height: parent.height } Document { id: document height: parent.height anchors.left: navigator.right anchors.right: parent.right } }