aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quickcontrols2/qquickdrawer/data/itemPartialOverlayModal.qml
blob: 23aa4ca3c2a25e25c83aa8a79b4aa57b1934fe4f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import QtQuick 2.15
import QtQuick.Controls 2.15

Item {
    width: 400; height: 400

    Drawer {
        edge: Qt.LeftEdge
        height: 200
        width: 200
        modal: true
    }
}