my_fatoorah 2.0.0 my_fatoorah: ^2.0.0 copied to clipboard
My Fatoorah Payment SDK Integration works for android and ios
my_fatoorah #
My Fatoorah Payment SDK Integration
Getting Started #
Installation #
add this to your pubspec.yaml
my_fatoorah: any
Config #
Ios #
add this line to your Info.plist
#
<key>io.flutter.embedded_views_preview</key>
<true>
if this url is not using ssl you have to use clear text traffic . put this value in your manifest
for android #
and allow arbitrary loads in your Info.plist
for ios #
Android #
<application
...
android:usesCleartextTraffic="true"
...>
...
</application>
Ios #
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
</dict>
Usage #
import 'package:my_fatoorah/my_fatoorah.dart';
...
MyFatoorah.startPayment(
context: context,
request: MyfatoorahRequest(
currencyIso: Country.SaudiArabia,
successUrl:
"Your success call back",
errorUrl:
"Your error call back",
invoiceAmount: 100,
language: ApiLanguage.Arabic,
token: null,
finishAfterCallback: true),
);
See the example for more details
Notes #
- because my fatoorah sdk itself uses webview i removed all platform specified code and used webview plugin since v2
- after payment done the web view redirect automatically to error or success url thats mean these url has to return html content