This repository has been archived on 2022-08-16. You can view files and clone it, but cannot push or open issues or pull requests.
fanny-app/qml/main.qml
2018-06-21 08:52:00 +02:00

16 lines
245 B
QML

import QtQuick 2.9
import QtQuick.Controls 2.2
ApplicationWindow {
id: window
visible: true
width: 640
height: 480
StackView {
id: stackView
initialItem: "LoginPage.qml"
anchors.fill: parent
}
}