summaryrefslogtreecommitdiff
path: root/SDL_Core/src/components/qt_hmi/References/Work/bananasnacks/qml/Bananas/Sections/phone.qml
blob: 8c2987f2f932335f64798356f7387e320590fbd7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import QtQuick 2.0
import "../Components"
import "../Layouts"

Rectangle {
    id: section
    anchors.fill: parent

    states: [
        State {
            name: ''
            PropertyChanges { target: page; source: "Phone/menu.qml" }
        },
        State {
            name: 'recent_calls'
            PropertyChanges { target: page; source: "Phone/recent_calls.qml" }
        },
        State {
            name: 'keypad'
            PropertyChanges { target: page; source: "Phone/keypad.qml" }
        },
        State {
            name: 'manage_devices'
            PropertyChanges { target: page; source: "Phone/manage_devices.qml" }
        }
    ]

    gradient: Gradient {
        GradientStop { position: 0.0; color: Qt.rgba(0.454901961,0.37254902,0.203921569,1) }
        GradientStop { position: 0.4; color: "#000000" }
    }

    Section {
        id: page
        source: "Phone/menu.qml"
    }
}