Loading...
Loading...
The Quiltt Flutter SDK provides a Widget for seamless integration of the Quiltt Connector into your Flutter app.
This SDK currently supports iOS and Android.
Documentation
For full documentation, additional examples and the source code, see the Quiltt Flutter SDK on Github.
Quiltt always prioritizes OAuth-based connections, which require your user to be provide consent on their institution's website or app, and then be redirected back to your app. This means that your application needs to be able to gracefully handle this redirect by returning them to Connector flow in your app.
For production Environments, you must pass a https://
URL to oauthRedirectUrl
. This URL must be a valid App Link (Android) or Universal Link (iOS) that can launch your app, like https://app.mydomain.com/connect_bank
.
Please see Flutter's guides on Andoid App Links and iOS Universal Links.
For local development, you can use http://
. We recommend using a tunneling service like Ngrok.
https://*.callback.quiltt.io
To load the Connector for use by a pre-existing end-user, you'll need to pass a valid Session token. See the Authentication guides for more information on generating Session tokens.
Below is an example of QuilttConnector
usage.