A native bridge to use Mercado Pago SDK V4 with React Native.
import MercadoPago from 'react-native-mercado-pago';
async startPayment() {
try {
const publicKey = 'TEST-dc0b51e0-0eb7-47ce-b145-5585a0189eb0';
const preferenceId = '113196323-082708db-09c3-4c7d-a65a-727e237c76e0';
const result = await MercadoPago.startPayment(publicKey, preferenceId, {
color: '#6200EE',
enableBankDeals: true,
language: 'es',
});
if (result.type === 'success') {
Alert.alert('Success', JSON.stringify(result));
} else {
Alert.alert('Canceled', 'Se canceló la transacción');
}
} catch (error) {
Alert.alert(error.message);
}
}
You can buy this product here: https://github.com/proyecto26/react-native-mercado-pago-enterprise
Made with ❤️