All Projects → jorgefspereira → plaid_flutter

jorgefspereira / plaid_flutter

Licence: MIT license
Plaid Link for Flutter. Integrates the native iOS, Android and Web SDKs.

Programming Languages

dart
5743 projects
objective c
16641 projects - #2 most used programming language
java
68154 projects - #9 most used programming language
HTML
75241 projects
ruby
36898 projects - #4 most used programming language

Projects that are alternatives of or similar to plaid flutter

plaid-link-ios
Plaid Link iOS SDK
Stars: ✭ 100 (+163.16%)
Mutual labels:  plaid-link, plaid
MorphTransitions
Morph transitions from buttons to dialogs and back
Stars: ✭ 27 (-28.95%)
Mutual labels:  plaid
support
Plaid Support
Stars: ✭ 65 (+71.05%)
Mutual labels:  plaid
plaid2qif
Download financial transactions from Plaid as QIF files.
Stars: ✭ 70 (+84.21%)
Mutual labels:  plaid
Dracker
An iOS and React App to track debt and send/receive payments.
Stars: ✭ 22 (-42.11%)
Mutual labels:  plaid

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 = PlaidLink(
    configuration: configuration,
);

_plaidLink.open();

...

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.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].