blob: e0ee73f548c53ef69701f517af60716a114bfe1f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
import QtQuick 2.12
import QtQuick.Controls 2.12
ApplicationWindow {
id: appWindow
width: 360
height: 640
visible: true
StackView {
id: stackView
initialItem: Login {}
}
}
|