edfapay_softpos_sdk 1.0.0+3
edfapay_softpos_sdk: ^1.0.0+3 copied to clipboard
Helps developers to easly integrate EdfaPay SoftPos to flutter mobile application with few simple steps.
0.0.3 #
- Revamp version of sdk
0.0.4 #
- Revamp version of sdk
- fixes & enhancement
0.0.5 #
- Revamp version of sdk
- fixes & enhancement
1.0.0+2 #
- Revamp version of sdk.
- Fixes & enhancement.
- Fix terminal token login.
1.0.0+3 #
- Added ability to change presentation
- Presentation.FULLSCREEN
- Presentation.DIALOG_CENTER
- Presentation.DIALOG_TOP_FILL
- Presentation.DIALOG_BOTTOM_FILL
- Presentation.DIALOG_TOP_START
- Presentation.DIALOG_TOP_END
- Presentation.DIALOG_TOP_CENTER
- Presentation.DIALOG_BOTTOM_START
- Presentation.DIALOG_BOTTOM_END
- Presentation.DIALOG_BOTTOM_CENTER
// Usage: EdfaPayPlugin.theme() .setPresentation( Presentation.DIALOG_CENTER .sizePercent(0.85) // scale to width of screen 1.0 to 0.20 .dismissOnBackPress(true) .dismissOnTouchOutside(true) .animateExit(true) .animateEntry(true) .dimBackground(true) .dimAmount(1.0) // scale to 1.0 to 0.0 .marginAll(0) // open number .cornerRadius(20) // open number .marginHorizontal(10) // open number .marginVertical(10) // open number .setPurchaseSecondaryAction(PurchaseSecondaryAction.none) );
- Added ability enable Secondary/Post Purchase Transaction Action.
- PurchaseSecondaryAction.reverse
- PurchaseSecondaryAction.refund
- PurchaseSecondaryAction.none
// Usage: EdfaPayPlugin.theme() .setPresentation( Presentation.DIALOG_CENTER .setPurchaseSecondaryAction(PurchaseSecondaryAction.reverse) );
- Added ability to decide UI Flow Type at the time of transaction.
- FlowType.immediate
- FlowType.status
- FlowType.detail
// Usage: EdfaPayPlugin.pay( params, flowType: FlowType.detail, /* */ );