calamares/src/modules/localeq/localeq.qml
Adriaan de Groot 6c418402e3 [localeq] Hit QML file with a hammer
- io.calamares.modules doesn't exist
- ResponsiveBase doesn't exist

The module is now non-functional, but at least it loads and renders
a list of regions and zones.
2020-04-03 13:43:48 +02:00

40 lines
804 B
QML

import io.calamares.core 1.0
import io.calamares.ui 1.0
import QtQuick 2.10
import QtQuick.Controls 2.10
import QtQuick.Layouts 1.3
import org.kde.kirigami 2.7 as Kirigami
import QtGraphicalEffects 1.0
RowLayout
{
Rectangle {
width: parent.width / 3
Layout.fillWidth: true
ColumnLayout {
id: regions
Repeater {
model: config.regionModel
Text {
text: label
}
}
}
}
Rectangle {
width: parent.width / 3
Layout.fillWidth: true
ColumnLayout {
id: zones
Repeater {
model: config.zonesModel
Text {
text: label
}
}
}
}
}