2023-05-03 19:06:16 +03:00
|
|
|
import QtQuick
|
|
|
|
|
import QtQuick.Controls
|
|
|
|
|
import QtQuick.Layouts
|
|
|
|
|
|
|
|
|
|
import PageEnum 1.0
|
|
|
|
|
|
|
|
|
|
import "./"
|
|
|
|
|
import "../Controls2"
|
|
|
|
|
import "../Controls2/TextTypes"
|
|
|
|
|
import "../Config"
|
|
|
|
|
|
2023-05-15 13:38:17 +08:00
|
|
|
Item {
|
2023-05-03 19:06:16 +03:00
|
|
|
id: root
|
|
|
|
|
|
|
|
|
|
FlickableType {
|
|
|
|
|
id: fl
|
|
|
|
|
anchors.top: root.top
|
|
|
|
|
anchors.bottom: root.bottom
|
|
|
|
|
contentHeight: content.height
|
|
|
|
|
|
|
|
|
|
ColumnLayout {
|
|
|
|
|
id: content
|
|
|
|
|
|
|
|
|
|
anchors.top: parent.top
|
|
|
|
|
anchors.left: parent.left
|
|
|
|
|
anchors.right: parent.right
|
|
|
|
|
anchors.rightMargin: 16
|
|
|
|
|
anchors.leftMargin: 16
|
|
|
|
|
|
|
|
|
|
spacing: 16
|
|
|
|
|
|
|
|
|
|
HeaderType {
|
|
|
|
|
Layout.fillWidth: true
|
|
|
|
|
Layout.topMargin: 20
|
|
|
|
|
|
|
|
|
|
//TODO remove later
|
2023-05-11 14:50:50 +08:00
|
|
|
backButtonImage: "qrc:/images/controls/arrow-left.svg"
|
2023-05-03 19:06:16 +03:00
|
|
|
|
|
|
|
|
headerText: "Установка"
|
|
|
|
|
descriptionText: ContainersModel.getCurrentlyInstalledContainerName()
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|