15 lines
245 B
QML
15 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
|
|
}
|
|
}
|