aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/snippets/data/toolbar/qtquickcontrols2-toolbar-frame.qml
blob: f0f64f82a48e9e4812567cd5730b5d5030d252f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
import QtQuick 2.0
import QtQuick.Controls 2.0

ToolBar {
    width: 100
    frame: Rectangle {
        anchors.fill: parent
        color: 'transparent'
        border.color: 'red'
    }
}