plaid_webview 1.0.1 copy "plaid_webview: ^1.0.1" to clipboard
plaid_webview: ^1.0.1 copied to clipboard

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 #

A new Flutter package.

Flutter for Plaid Link

pub

Usage #

class _Example extends State {
  
  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
90
pub points
0%
popularity

Publisher

unverified uploader

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.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter, http, webview_flutter

More

Packages that depend on plaid_webview