mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-17 18:11:54 +00:00
0b67555ee1
- use `StatusListView` for the popup/menu contentItem - add the menu to SB too Fixes #16635
22 lines
606 B
QML
22 lines
606 B
QML
import QtQml 2.15
|
|
|
|
QtObject {
|
|
id: root
|
|
|
|
// store properties
|
|
required property bool isAddAccountPopup
|
|
property bool enteredPrivateKeyIsValid: false
|
|
property bool enteredPrivateKeyMatchTheKeypair: true
|
|
property bool enteredSeedPhraseIsValid: false
|
|
|
|
// backend properties
|
|
required property var privateKeyAccAddress
|
|
|
|
// functions
|
|
property var changePrivateKeyPostponed: function(){}
|
|
property var cleanPrivateKey: function(){}
|
|
property var submitPopup: function(){}
|
|
property var changeSeedPhrase: function(){}
|
|
property var validSeedPhrase: function(){}
|
|
}
|