forked from jeena/FeedTheMonkey
21 lines
305 B
QML
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
|
|
}
|
|
}
|