blob: 3ecbf0eba5cb4877dc7b26f599f2b2292f190f40 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
import QtQuick 2.12
import QtQuick.Controls 2.12
ApplicationWindow {
id: appWindow
width: 362
height: 628
visible: true
StackView {
id: stackView
anchors.fill : parent
initialItem: Login {}
}
}
|