summaryrefslogtreecommitdiff
path: root/src/components/qt_hmi/References/Work/bananasnacks/qml/Bananas/Sections/Media/applink.qml
blob: 4f9d281964195de795bc17c0ef10c41c0f22a647 (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
import QtQuick 2.0
import com.ford.sdlcore 1.0
import "../../Components"
import "../../Layouts"

MediaPlayerLayout {
    header: "AppLink"
    id: applink

    Column {
        anchors.verticalCenter: parent.verticalCenter
        anchors.left: parent.left
        anchors.leftMargin: 20

        Text {
            id: title
            text: AppLink.show1
            color: "#ffffff"
            font.pixelSize: 28
            anchors.leftMargin: 20
        }
        Text {
            id: artist
            text: AppLink.show2
            color: "#ffffff"
            font.pixelSize: 18
        }
    }
}