justcheckers/main.qml

23 lines
363 B
QML
Raw Permalink Normal View History

import QtQuick 2.9
2018-08-15 17:06:32 -04:00
import QtQuick.Controls 2.1
2018-08-15 17:06:32 -04:00
ApplicationWindow {
2018-02-13 15:18:59 -05:00
id: mainWindow
property var appVersion: "0.4.0"
visible: true
2018-02-22 08:03:26 -05:00
width: 540
height: 960
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
}
}