plaid_flutter 4.1.1 plaid_flutter: ^4.1.1 copied to clipboard
Plaid Link for Flutter. Integrates the native iOS, Android and Web SDKs.
import 'dart:async';
import 'package:flutter/material.dart';
import 'package:plaid_flutter/plaid_flutter.dart';
void main() => runApp(const MyApp());
class MyApp extends StatefulWidget {
const MyApp({super.key});
@override
_MyAppState createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
LinkTokenConfiguration? _configuration;
StreamSubscription<LinkEvent>? _streamEvent;
StreamSubscription<LinkExit>? _streamExit;
StreamSubscription<LinkSuccess>? _streamSuccess;
LinkObject? _successObject;
@override
void initState() {
super.initState();
_streamEvent = PlaidLink.onEvent.listen(_onEvent);
_streamExit = PlaidLink.onExit.listen(_onExit);
_streamSuccess = PlaidLink.onSuccess.listen(_onSuccess);
}
@override
void dispose() {
_streamEvent?.cancel();
_streamExit?.cancel();
_streamSuccess?.cancel();
super.dispose();
}
void _createLinkTokenConfiguration() {
setState(() {
_configuration = const LinkTokenConfiguration(
token: "link-sandbox-74cf082e-870b-461f-a37a-038cace0afee",
);
PlaidLink.create(configuration: _configuration!);
});
}
void _onEvent(LinkEvent event) {
final name = event.name;
final metadata = event.metadata.description();
print("onEvent: $name, metadata: $metadata");
}
void _onSuccess(LinkSuccess event) {
final token = event.publicToken;
final metadata = event.metadata.description();
print("onSuccess: $token, metadata: $metadata");
setState(() => _successObject = event);
}
void _onExit(LinkExit event) {
final metadata = event.metadata.description();
final error = event.error?.description();
print("onExit metadata: $metadata, error: $error");
}
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
body: Container(
width: double.infinity,
color: Colors.grey[200],
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
Expanded(
child: Center(
child: Text(
_configuration?.toJson().toString() ?? "",
textAlign: TextAlign.center,
),
),
),
ElevatedButton(
onPressed: _createLinkTokenConfiguration,
child: const Text("Create Link Token Configuration"),
),
const SizedBox(height: 15),
ElevatedButton(
onPressed:
_configuration != null ? () => PlaidLink.open() : null,
child: const Text("Open"),
),
const SizedBox(height: 10),
ElevatedButton(
onPressed: _configuration != null
? () {
PlaidLink.submit(
SubmissionData(
phoneNumber: "14155550015",
),
);
}
: null,
child: const Text("Submit Phone Number"),
),
Expanded(
child: Center(
child: Text(
_successObject?.toJson().toString() ?? "",
textAlign: TextAlign.center,
),
),
),
],
),
),
),
);
}
}