diff options
| author | Erik Prabowo Kamal <erik@darapsa.co.id> | 2019-08-28 11:04:03 +0800 | 
|---|---|---|
| committer | Erik Prabowo Kamal <erik@darapsa.co.id> | 2019-08-28 11:04:03 +0800 | 
| commit | 6b73d33aad0e1eacf383eedbe07b80dabd40b182 (patch) | |
| tree | 1b55a144d73c96d0de9c9d337a81237d11e24bd0 /main.qml | |
| parent | 8a902de80ab8d5f90cf044220a5403e2f6554115 (diff) | |
Reindented main.qml
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 {} +	}  } |