blob: 7116a43705321c8fdb5156f77cd197ba2c525af0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import QtQuick 2.12
import id.co.darapsa.kelakon.user 0.1
HomeForm {
width: stackView.width
height: stackView.height
menuButton {
onClicked: {
drawer.visible = !drawer.visible
}
}
}
|