plaid_flutter 3.0.1 copy "plaid_flutter: ^3.0.1" to clipboard
plaid_flutter: ^3.0.1 copied to clipboard

Plaid Link for Flutter. Integrates the native iOS, Android and Web SDKs.

Plaid Link for Flutter #

pub points popularity likes donate

A Flutter plugin for Plaid Link.

This plugin integrates the native SDKs:

Feel free to leave any feedback here.

Requirements #

In order to initialize Plaid Link, you will need to create a link_token at /link/token/create. After generating a link_token, you'll need to pass it into your app and use it to launch Link:

...

LinkConfiguration configuration = LinkTokenConfiguration(
    token: "<GENERATED_LINK_TOKEN>",
);

PlaidLink.open(configuration: configuration)

...

A link_token can be configured for different Link flows depending on the fields provided during token creation. It is the preferred way of initializing Link going forward. You will need to pass in most of your Link configurations server-side in the /link/token/create endpoint rather than client-side where they previously existed.

If your integration is still using a public_key to initialize Plaid Link, the LinkConfiguration class has support for it. Check the migration guide to upgrade your app to the link_token flow.

Installation #

Add plaid_flutter as a dependency in your pubspec.yaml file.

iOS #

Requirements #

  • iOS version >= 11.0
  • Xcode 11.5 or greater

(Optional) - Register your redirect URI #

Registering a redirect URI is required when working with OAuth, which is used for European integrations as well as integrations with some US financial institutions. To register your redirect app URI:

  • Log into your Plaid Dashboard at the API page
  • Next to Allowed redirect URIs click Configure then Add New URI
  • Enter your redirect URI, for example www.plaid.com/redirect
  • Click Save Changes. You may be prompted to re-enter your password.

More info at https://plaid.com/docs/link/ios.

Android #

Requirements #

Gradle Configuration

Go to the project level android/app/build.gradle and make sure you are using a minSdk >= 21

Register your App ID

  • Log into your Plaid Dashboard at the API page
  • Next to Allowed Android Package Names click Configure then Add New Android Package Name
  • Enter your package name, for example com.plaid.example
  • Click Save Changes, you may be prompted to re-enter your password

More info at https://plaid.com/docs/link/android.

Web #

Requirements #

Include the Plaid Link initialize script on your main HTML page.


<script src="https://cdn.plaid.com/link/v2/stable/link-initialize.js"></script>

More info at https://plaid.com/docs/link/web.

76
likes
0
pub points
94%
popularity

Publisher

unverified uploader

Plaid Link for Flutter. Integrates the native iOS, Android and Web SDKs.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter, flutter_web_plugins, js, plugin_platform_interface

More

Packages that depend on plaid_flutter