FeedTheMonkey/main.qml
2015-01-07 19:38:43 +01:00

21 lines
305 B
QML

import QtQuick 2.3
import QtQuick.Controls 1.2
ApplicationWindow {
id: window
visible: true
width: 360
height: 360
menuBar: TheMenuBar {}
Content {
anchors.fill: parent
visible: false
}
Login {
anchors.fill: parent
visible: true
}
}