39 lines
860 B
QML
39 lines
860 B
QML
import QtQuick 2.13
|
|
import QtQuick.Controls 2.13
|
|
import "../../imports"
|
|
import "../../shared"
|
|
import "../../shared/status"
|
|
|
|
ModalPopup {
|
|
property var onOpenModalClick: function () {}
|
|
id: popup
|
|
//% "Enter seed phrase"
|
|
title: qsTrId("enter-seed-phrase")
|
|
height: 200
|
|
|
|
StyledText {
|
|
text: "Do you want to add another existing key?"
|
|
anchors.left: parent.left
|
|
anchors.top: parent.top
|
|
}
|
|
|
|
footer: StatusButton {
|
|
anchors.bottom: parent.bottom
|
|
anchors.topMargin: Style.current.padding
|
|
anchors.right: parent.right
|
|
anchors.rightMargin: Style.current.padding
|
|
text: "Add another existing key"
|
|
|
|
onClicked : {
|
|
onOpenModalClick()
|
|
popup.close()
|
|
}
|
|
}
|
|
}
|
|
|
|
/*##^##
|
|
Designer {
|
|
D{i:0;formeditorColor:"#ffffff";height:500;width:400}
|
|
}
|
|
##^##*/
|