mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2024-11-19 18:00:17 +01:00
38 lines
916 B
JavaScript
38 lines
916 B
JavaScript
import prompt from 'react-native-prompt-android';
|
|
|
|
module.exports = (title, text, isCancelable = true, type = 'secure-text') => {
|
|
return new Promise((resolve, reject) => {
|
|
const buttons = isCancelable
|
|
? [
|
|
{
|
|
text: 'Cancel',
|
|
onPress: () => {
|
|
reject(Error('Cancel Pressed'));
|
|
},
|
|
style: 'cancel',
|
|
},
|
|
{
|
|
text: 'OK',
|
|
onPress: password => {
|
|
console.log('OK Pressed, password: ' + password);
|
|
resolve(password);
|
|
},
|
|
},
|
|
]
|
|
: [
|
|
{
|
|
text: 'OK',
|
|
onPress: password => {
|
|
console.log('OK Pressed, password: ' + password);
|
|
resolve(password);
|
|
},
|
|
},
|
|
];
|
|
|
|
prompt(title, text, buttons, {
|
|
type: type,
|
|
cancelable: isCancelable,
|
|
});
|
|
});
|
|
};
|