blob: 49aadd3d62c452b0ba1b80274414981939c7bea8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
import QtQuick
import QtQuick.Controls
Item {
width: 200
height: 200
Drawer {
anchors.centerIn: parent
visible: true
modal: true
Label {
text: "modal"
}
}
}
|