2020-06-17 19:18:31 +00:00
|
|
|
import QtQuick 2.13
|
|
|
|
import QtQuick.Controls 2.13
|
2020-06-12 20:47:44 +00:00
|
|
|
import "../../imports"
|
|
|
|
import "../../shared"
|
|
|
|
|
|
|
|
ModalPopup {
|
|
|
|
property var onOpenModalClick: function () {}
|
|
|
|
id: popup
|
|
|
|
title: qsTr("Enter seed phrase")
|
|
|
|
height: 200
|
|
|
|
|
2020-06-19 18:06:58 +00:00
|
|
|
StyledText {
|
2020-06-12 20:47:44 +00:00
|
|
|
text: "Do you want to add another existing key?"
|
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.top: parent.top
|
|
|
|
}
|
|
|
|
|
|
|
|
footer: StyledButton {
|
|
|
|
anchors.bottom: parent.bottom
|
|
|
|
anchors.topMargin: Theme.padding
|
|
|
|
anchors.right: parent.right
|
|
|
|
anchors.rightMargin: Theme.padding
|
|
|
|
label: "Add another existing key"
|
|
|
|
|
|
|
|
onClicked : {
|
|
|
|
onOpenModalClick()
|
|
|
|
popup.close()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*##^##
|
|
|
|
Designer {
|
|
|
|
D{i:0;formeditorColor:"#ffffff";height:500;width:400}
|
|
|
|
}
|
|
|
|
##^##*/
|