37 lines
843 B
QML
37 lines
843 B
QML
import QtQuick 2.13
|
|
import QtQuick.Controls 2.13
|
|
import "../../../imports"
|
|
import "../../../shared"
|
|
import "../../../shared/status"
|
|
import "./components"
|
|
|
|
ModalPopup {
|
|
id: popup
|
|
title: qsTr("Manage Assets")
|
|
|
|
|
|
TokenSettingsModalContent {
|
|
id: settingsModalContent
|
|
anchors.left: parent.left
|
|
anchors.right: parent.right
|
|
anchors.bottom: parent.bottom
|
|
anchors.top: parent.top
|
|
anchors.leftMargin: Style.current.padding
|
|
anchors.rightMargin: Style.current.padding
|
|
}
|
|
|
|
footer: StatusButton {
|
|
anchors.right: parent.right
|
|
//% "Add custom token"
|
|
text: qsTrId("add-custom-token")
|
|
anchors.top: parent.top
|
|
onClicked: addCustomTokenModal.openEditable()
|
|
}
|
|
}
|
|
|
|
/*##^##
|
|
Designer {
|
|
D{i:0;autoSize:true;height:480;width:640}
|
|
}
|
|
##^##*/
|