diff options
| author | Erik Prabowo Kamal <erik@darapsa.co.id> | 2019-08-26 11:49:28 +0800 |
|---|---|---|
| committer | Erik Prabowo Kamal <erik@darapsa.co.id> | 2019-08-26 11:49:28 +0800 |
| commit | 0791cac4bc4bd9fd6224f82efcdf07e9973a679d (patch) | |
| tree | 2ab4c552174b36a9f487f1b83e2f261ce18015e7 /main.qml | |
| parent | fb6c5cadcb62e90872383f466822e1b29ad7f789 (diff) | |
Reindented and removed implicit code
Diffstat (limited to 'main.qml')
| -rw-r--r-- | main.qml | 22 |
1 files changed, 9 insertions, 13 deletions
@@ -2,17 +2,13 @@ import QtQuick 2.12 import QtQuick.Controls 2.12 ApplicationWindow { - id: appWindow - width: 362 - height: 628 - visible: true - - StackView { - id: stackView - width: 362 - height: 628 - - initialItem: Login {} - } - + id: appWindow + width: 360 + height: 640 + visible: true + + StackView { + id: stackView + initialItem: Login {} + } } |