mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-09 22:06:25 +00:00
32 lines
648 B
QML
32 lines
648 B
QML
import QtQuick 2.13
|
|
import QtQuick.Controls 2.13
|
|
import "../../../imports"
|
|
import "../../../shared"
|
|
import "./components"
|
|
|
|
ModalPopup {
|
|
id: popup
|
|
//% "Add/Remove Tokens"
|
|
title: qsTrId("add/remove-tokens")
|
|
|
|
|
|
TokenSettingsModalContent {
|
|
id: settingsModalContent
|
|
}
|
|
|
|
footer: StyledButton {
|
|
anchors.right: parent.right
|
|
anchors.rightMargin: Style.current.padding
|
|
//% "Add custom token"
|
|
label: qsTrId("add-custom-token")
|
|
anchors.top: parent.top
|
|
onClicked: addCustomTokenModal.open()
|
|
}
|
|
}
|
|
|
|
/*##^##
|
|
Designer {
|
|
D{i:0;autoSize:true;height:480;width:640}
|
|
}
|
|
##^##*/
|