19 lines
366 B
QML
19 lines
366 B
QML
import QtQuick
|
|
import QtQuick.Controls
|
|
import QtQuick.Layouts
|
|
import EVChargerApp
|
|
|
|
Text {
|
|
property alias apiKey: apiKeyValueHelper.apiKey
|
|
property alias exists: apiKeyValueHelper.exists
|
|
|
|
Layout.fillWidth: true
|
|
|
|
ApiKeyValueHelper {
|
|
id: apiKeyValueHelper
|
|
deviceConnection: theDeviceConnection
|
|
}
|
|
|
|
text: apiKeyValueHelper.value
|
|
}
|