import QtQuick 2.9 import QtQuick.Window 2.2 Window { visible: true width: 800 height: 600 title: qsTr("justCheckers") Loader { id: appPage source: "Menu.qml" anchors.fill: parent } MouseArea { anchors.fill: parent onClicked: appPage.source = "Board.qml" } }