mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-09 13:56:10 +00:00
33 lines
627 B
QML
33 lines
627 B
QML
import QtQuick 2.13
|
|
import QtQuick.Controls 2.13
|
|
import "../../../imports"
|
|
import "../../../shared"
|
|
import "./components"
|
|
|
|
ModalPopup {
|
|
id: popup
|
|
title: qsTr("Add/Remove Tokens")
|
|
|
|
|
|
TokenSettingsModalContent {
|
|
id: settingsModalContent
|
|
}
|
|
|
|
footer: StyledButton {
|
|
anchors.right: parent.right
|
|
anchors.rightMargin: Theme.padding
|
|
label: qsTr("Add custom token")
|
|
anchors.top: parent.top
|
|
onClicked: {
|
|
popup.close()
|
|
addCustomTokenModal.open()
|
|
}
|
|
}
|
|
}
|
|
|
|
/*##^##
|
|
Designer {
|
|
D{i:0;autoSize:true;height:480;width:640}
|
|
}
|
|
##^##*/
|