edfapay_softpos_sdk 1.0.4 copy "edfapay_softpos_sdk: ^1.0.4" to clipboard
edfapay_softpos_sdk: ^1.0.4 copied to clipboard

PlatformAndroid

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,
          /* */
      );
      

1.0.4 #

  • Added ability to enable/disable PIN PAD shuffles at Pin Transaction.

    // Usage:
    EdfaPayPlugin.theme()
      .setPresentation(
          Presentation.DIALOG_CENTER
              .setShufflePinPad(true); // default false
      );
    
  • Added ability to start transaction from remote source (LocalNetwork).

    • Note: Make sure to open RemoteChannel after successful SDK initialization.
      // Usage: Make sure to open RemoteChannel after initialize successful 
      EdfaPayPlugin.RemoteChannel.LocalNetwork(8080, 3.0).open();
    
0
likes
110
points
165
downloads

Publisher

verified publisheredfapay.com

Weekly Downloads

Helps developers to easly integrate EdfaPay SoftPos to flutter mobile application with few simple steps.

Documentation

API reference

License

unknown (license)

Dependencies

flutter, plugin_platform_interface

More

Packages that depend on edfapay_softpos_sdk

Packages that implement edfapay_softpos_sdk