pikaju / flutter-braintree

Flutter plugin that wraps the native Braintree SDKs. Enables payments with credit cards, PayPal, Google Pay and more.
https://pub.dev/packages/flutter_braintree
MIT License
65 stars 126 forks source link

Not getting venmo option in BraintreeDropInRequest #66

Open krishna1931 opened 3 years ago

krishna1931 commented 3 years ago

payment_options

Only getting paypal and card option here in BraintreeDropInRequest. how can I get venmo option also?

var request = BraintreeDropInRequest(
                        vaultManagerEnabled: true,
                        applePayRequest: BraintreeApplePayRequest(
                            amount: amountInt.toDouble(),
                            displayName: "TEST",
                            countryCode: "PL",
                            currencyCode: "PLD",
                            appleMerchantID: "merchant.id.here"),
                        venmoEnabled: true,
                        tokenizationKey: tokenizationKey,
                        collectDeviceData: true,
                        googlePaymentRequest: BraintreeGooglePaymentRequest(
                          totalPrice: amountInt.toString(),
                          currencyCode: 'PLD',
                          billingAddressRequired: false,
                        ),
                        paypalRequest: BraintreePayPalRequest(
                          amount: amountInt.toString(),
                          displayName: 'TEST',
                        ),
                        cardEnabled: true,
                      );

Please help me with this. Thank you.

dinit-lukose-sada commented 3 years ago

same error. Is there any update on this?

diegofca commented 3 years ago

Same bug, can't use Venmo.

anooj-shah commented 2 years ago

+1

jsmeke commented 2 years ago

Same error. Any update?

YonathanZetune commented 2 years ago

I was able to solve the same issues by following the instructions here:

BunnyBuddy commented 6 months ago

I was able to solve the same issues by following the instructions here:

Can you share the code please?