eopeter / flutter_stripe_payment

Add Stripe Payments to Flutter Application
Other
30 stars 27 forks source link

postal code #29

Open heliahk opened 2 years ago

heliahk commented 2 years ago

hi I want to remove postal code... please help me!

OptimusCenturio commented 2 years ago

Hi, I see the issue is not closed so here's what you need to do to remove the postal (zip) code from all forms:

Android

Add the following to _"android/src/main/kotlin/com/dormmom/flutter_stripepayment/activity/PaymentActivity.kt" after line 52: cardInputWidget.setShouldShowPostalCode(false)

iOS

Add the following to "ios/Classes/SwiftFlutterStripePaymentPlugin.swift" after line 125: STPPaymentConfiguration.shared.requiredBillingAddressFields = .none

hi I want to remove postal code... please help me!