2020-11-03 21:04:57 +00:00
|
|
|
import QtQuick 2.13
|
|
|
|
import QtQuick.Controls 2.13
|
|
|
|
import QtQuick.Layouts 1.13
|
|
|
|
import "../../../../imports"
|
|
|
|
import "../../../../shared"
|
|
|
|
import "../../../../shared/status"
|
|
|
|
|
|
|
|
ModalPopup {
|
|
|
|
id: popup
|
2021-02-18 16:36:05 +00:00
|
|
|
//% "Fleet"
|
|
|
|
title: qsTrId("fleet")
|
2020-11-03 21:04:57 +00:00
|
|
|
|
|
|
|
property string newFleet: "";
|
|
|
|
|
|
|
|
Column {
|
|
|
|
id: column
|
2021-03-19 10:25:29 +00:00
|
|
|
anchors.top: parent.top
|
|
|
|
anchors.bottom: parent.bottom
|
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.right: parent.right
|
|
|
|
anchors.rightMargin: Style.current.padding
|
|
|
|
anchors.leftMargin: Style.current.padding
|
|
|
|
|
|
|
|
spacing: 0
|
2020-11-03 21:04:57 +00:00
|
|
|
|
|
|
|
ButtonGroup { id: fleetSettings }
|
|
|
|
|
2020-11-06 14:20:52 +00:00
|
|
|
FleetRadioSelector {
|
|
|
|
fleetName: Constants.eth_prod
|
2020-11-03 21:04:57 +00:00
|
|
|
}
|
|
|
|
|
2020-11-06 14:20:52 +00:00
|
|
|
FleetRadioSelector {
|
|
|
|
fleetName: Constants.eth_staging
|
2020-11-03 21:04:57 +00:00
|
|
|
}
|
|
|
|
|
2020-11-06 14:20:52 +00:00
|
|
|
FleetRadioSelector {
|
|
|
|
fleetName: Constants.eth_test
|
2020-11-03 21:04:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|