summaryrefslogtreecommitdiff
path: root/SDL_Core/src/components/qt_hmi/References/Work/bananasnacks/qml/Bananas/Sections/Phone/device_info.qml
blob: 1f409f58e6f6d62454984747e9ddcaf696700761 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import QtQuick 2.0
import "../../Components"
import com.ford.phonecore 1.0

Item {
    anchors.fill: parent

    H2 {
        id: h2
        text: PhoneCore.device_name

        anchors.horizontalCenter: parent.horizontalCenter
    }
    Button {
        text: "Forget device"
        onPress: PhoneCore.unpairDevice()
        anchors.horizontalCenter: parent.horizontalCenter
        anchors.top: h2.bottom
        anchors.topMargin: 20
    }
}