wilburx9 / flutter_paystack

:credit_card: A robust Flutter plugin for making payments via Paystack Payment Gateway. Completely supports Android and iOS
https://pub.dartlang.org/packages/flutter_paystack
Apache License 2.0
208 stars 358 forks source link

The prices are in NGN even though I am using GHS (Ghana cedis). It doesn't work for Ghana's API. #132

Closed decwap closed 1 year ago

decwap commented 1 year ago

It doesn't change when I use Ghana cedis. The figures appear in NGN even though my app prices are in GHS. Can anyone help?

wilburx9 commented 1 year ago

@decwap Can you send a screenshot of the UI and some code samples?

I couldn't reproduce it. Here's the code sample and screenshot:

Charge charge = Charge()
      ..amount = 10000 // In base currency
      ..email = 'customer@email.com'
      ..locale = "en_GH"
      ..currency = "GH₵"
      ..putCustomField('Charged From', 'Flutter SDK');
decwap commented 1 year ago

Thank you very much, is there a way I can get the Mobile Money part too, it only displays card payments. Please help.

Screen Recording 2020-03-05 at 08 45 PM

wilburx9 commented 1 year ago

There are currently no plans to support Mobile Money, but you can implement it and raise a PR. I will be closing this issue since the problem has been fixed.