esewa

Last updated:

0 purchases

esewa Image
esewa Images
Add to Cart

Description:

esewa

Unofficial eSewa SDK for Flutter apps to pay with eSewa.
Features #

Pay with eSewa

Getting started #
This app depends on flutter_inappwebview plugin. So, you need configure following things.
Requirements #

Dart sdk: ">=2.15.0 <4.0.0"
Flutter: ">=3.0.0"
Android: minSdkVersion 19 and add support for androidx (see AndroidX Migration to migrate an existing app)
iOS 9.0+: --ios-language swift, Xcode version >= 14.3
MacOS 10.11+: Xcode version >= 14.3

Installation #
Add esewa as a dependency in your pubspec.yaml file.
Usage #
Navigator.push(
context,
MaterialPageRoute(
builder: (context) => PayWithEsewaScreen(
config: EsewaConfigModel.sandbox(
amount: 10,
taxAmount: 0,
successUrl: 'https://example.com/success',
failureUrl: 'https://example.com/failure',
productId: 'product_id',
),
onSuccess: (config, refId) {
if (kDebugMode) {
print('Payment successful');
}
if (kDebugMode) {
print('RefId: $refId');
}
showSnackBar(context, 'Payment successful RefId: $refId');
},
onFailure: (errorMessage) {
Navigator.pop(context);
showSnackBar(context, errorMessage);
if (kDebugMode) {
print('Error: $errorMessage');
}
},
),
),
);
copied to clipboard

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.