import QtQuick 2.15 import QtQuick.Controls 2.15 Page { id: root Column { Label { text: "Please grant bluetooth permission" } Button { onClicked: ble.requestLocationPermission() } } }