2020-06-17 15:18:31 -04:00
|
|
|
import QtQuick 2.13
|
|
|
|
import QtQuick.Controls 2.13
|
2020-06-03 12:49:18 -04:00
|
|
|
import "../../../imports"
|
|
|
|
import "../../../shared"
|
2020-06-04 15:56:44 -05:00
|
|
|
import "./components"
|
2020-06-03 12:49:18 -04:00
|
|
|
|
2020-06-18 11:56:53 -04:00
|
|
|
ModalPopup {
|
|
|
|
id: popup
|
2020-07-06 16:39:55 -04:00
|
|
|
//% "Add/Remove Tokens"
|
|
|
|
title: qsTrId("add/remove-tokens")
|
2020-06-18 11:56:53 -04:00
|
|
|
|
|
|
|
|
|
|
|
TokenSettingsModalContent {
|
|
|
|
id: settingsModalContent
|
2020-06-03 12:49:18 -04:00
|
|
|
}
|
|
|
|
|
2020-06-18 11:56:53 -04:00
|
|
|
footer: StyledButton {
|
|
|
|
anchors.right: parent.right
|
2020-07-02 11:14:31 -04:00
|
|
|
anchors.rightMargin: Style.current.padding
|
2020-07-06 16:39:55 -04:00
|
|
|
//% "Add custom token"
|
|
|
|
label: qsTrId("add-custom-token")
|
2020-06-18 11:56:53 -04:00
|
|
|
anchors.top: parent.top
|
2020-09-08 11:52:09 -04:00
|
|
|
onClicked: addCustomTokenModal.open()
|
2020-06-03 12:49:18 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*##^##
|
|
|
|
Designer {
|
|
|
|
D{i:0;autoSize:true;height:480;width:640}
|
|
|
|
}
|
|
|
|
##^##*/
|