justcheckers/main.qml

27 lines
449 B
QML
Raw Normal View History

import QtQuick 2.9
import QtQuick.Window 2.2
Window {
2018-02-13 15:18:59 -05:00
id: mainWindow
property var appVersion: "0.4.0"
visible: true
width: 800
height: 600
2018-02-13 15:18:59 -05:00
title: qsTr("justCheckers v" + appVersion)
Loader {
id: appPage
source: "Menu.qml"
anchors.fill: parent
2018-02-13 15:18:59 -05:00
property var version: appVersion
}
MouseArea {
anchors.fill: parent
onClicked: appPage.source = "Board.qml"
}
}