mirror of
https://github.com/QuasarApp/QtAndroidTools.git
synced 2025-04-29 22:44:31 +00:00
36 lines
725 B
QML
36 lines
725 B
QML
import QtQuick 2.12
|
|
import QtQuick.Controls 2.12
|
|
import QtQuick.Dialogs 1.3
|
|
import QtAndroidTools 1.0
|
|
|
|
Page {
|
|
id: page
|
|
padding: 40
|
|
|
|
Column {
|
|
anchors.fill: parent
|
|
spacing: 20
|
|
|
|
Label {
|
|
font.bold: true
|
|
font.pixelSize: 25
|
|
text: "Battery Level:"
|
|
}
|
|
Label {
|
|
id: batteryLevel
|
|
font.pixelSize: 23
|
|
text: QtAndroidBatteryState.level
|
|
}
|
|
Label {
|
|
font.bold: true
|
|
font.pixelSize: 25
|
|
text: "Battery on charge:"
|
|
}
|
|
Label {
|
|
id: batteryOnCharge
|
|
font.pixelSize: 23
|
|
text: QtAndroidBatteryState.onCharge
|
|
}
|
|
}
|
|
}
|