plaid_webview 0.0.1+1 copy "plaid_webview: ^0.0.1+1" to clipboard
plaid_webview: ^0.0.1+1 copied to clipboard

outdated

A webview implementation of plaid.

plaid_webview #

A webview implementation of plaid. Plaid helps all companies build fintech solutions by making it easy, safe and reliable for people to connect their financial data to apps and services.

plaid_webview

Usage #

class PlaidWebviewExample extends StatelessWidget {
  
  showPlaidView() {
    bool plaidSandbox = false;
    
    Configuration configuration = Configuration(
        plaidPublicKey: 'yourPublicKey',
        plaidBaseUrl: 'https://cdn.plaid.com/link/v2/stable/link.html',
        plaidEnvironment: plaidSandbox ? 'sandbox' : 'production',
        environmentPlaidPathAccessToken:
            'https://sandbox.plaid.com/item/public_token/exchange',
        environmentPlaidPathStripeToken:
            'https://sandbox.plaid.com/processor/stripe/bank_account_token/create',
        plaidClientId: 'yourPlaidClientId',
        secret: plaidSandbox ? 'yourSecret' : '');

    PlaidWebview plaidWebview = PlaidWebview(configuration);
    plaidWebview.launch(context, (Result result) {
      ///handle result
    }, stripeToken: false);
  }

  @override
  Widget build(BuildContext context) {
    return Container();
  }
}

2
likes
0
pub points
0%
popularity

Publisher

unverified uploader

A webview implementation of plaid.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter, http, webview_flutter

More

Packages that depend on plaid_webview