18 lines
272 B
QML
18 lines
272 B
QML
import QtQuick
|
|
import QtQuick.Controls
|
|
import QtQuick.Layouts
|
|
|
|
NavigationPage {
|
|
title: qsTr("Charging Speed")
|
|
|
|
Text {
|
|
text: "current limits TODO"
|
|
|
|
Layout.fillWidth: true
|
|
}
|
|
|
|
SelectPhaseSwitchModeItem {
|
|
Layout.fillWidth: true
|
|
}
|
|
}
|