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

TitledLayout {
    title: "Manage Bluetooth devices"
    back_button: true

    Loader {
        id: view

        anchors.fill: parent
        source: (PhoneCore.device_name === "") ? "discovery.qml" : "device_info.qml"
    }
}