aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmllint/data/pluginQuick_swipeDelegate.qml
blob: a6c3b2c743a5e25b9a7e6a8e5d448bbdf7c273d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import QtQuick.Controls
import QtQuick

Item {
    SwipeDelegate {
        contentItem: Item { anchors.left: parent.left }
        background: Item { anchors.right: parent.right }

        swipe.left: Item {}
        swipe.behind: Item {}
    }
    SwipeDelegate {
        contentItem: Item { anchors.centerIn: parent }
        background: Item { anchors.fill: parent }

        swipe.right: Item {}
        swipe.behind: Item {}
    }
}