diff options
Diffstat (limited to 'main.qml')
-rw-r--r-- | main.qml | 18 |
1 files changed, 9 insertions, 9 deletions
@@ -2,16 +2,16 @@ import QtQuick 2.12 import QtQuick.Controls 2.12 ApplicationWindow { - id: appWindow - width: 362 - height: 628 - visible: true + id: appWindow + width: 362 + height: 628 + visible: true - StackView { - id: stackView - anchors.fill : parent + StackView { + id: stackView + anchors.fill : parent - initialItem: Login {} - } + initialItem: Login {} + } } |