summaryrefslogtreecommitdiff
path: root/SDL_Core/src/components/qt_hmi/References/Work/bananasnacks/qml/Bananas/Layouts/EmptyLayout.qml
blob: 8fe6fcfd7c0d3cc8373347e9c602cd0e257555b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import QtQuick 2.0
import "../Components"

Item {
    anchors.fill: parent
    anchors.topMargin: 70
    anchors.leftMargin: 20
    anchors.rightMargin: 20
    anchors.bottomMargin: 70
    property bool back_button: false

    BackButton {
        onPress: section.state = ''
        visible: parent.back_button
    }
}