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

Rectangle {
    anchors.fill: parent

    gradient: Gradient {
        GradientStop { position: 0.4; color: "#000000" }
        GradientStop { position: 1.0; color: "#104369" }
    }

    Section {
        id: section
        source: "Vehicle/menu.qml"
    }
}