teller_connect 0.1.0+1 copy "teller_connect: ^0.1.0+1" to clipboard
teller_connect: ^0.1.0+1 copied to clipboard

Teller.io connect SDK for Flutter. Instantly connect your app to thousands of financial institutions

example/lib/main.dart

import 'package:example/pages/connect_bank.dart';
import 'package:flutter/material.dart';

void main() async {
  WidgetsFlutterBinding.ensureInitialized();
  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        body: Builder(
          builder: (context) {
            return Center(
              child: Column(
                mainAxisSize: MainAxisSize.min,
                children: [
                  const Text(
                    "Let's connect a bank!",
                    style: TextStyle(fontSize: 30),
                  ),
                  const SizedBox(height: 20),
                  FilledButton.icon(
                    icon: const Icon(Icons.add),
                    label: const Text("Connect Bank"),
                    onPressed: () async {
                      final token = await Navigator.push(
                        context,
                        MaterialPageRoute(
                          builder: (context) => const ConnectBankPage(),
                        ),
                      );

                      if (token != null && context.mounted) {
                        ScaffoldMessenger.of(context).showSnackBar(
                          SnackBar(
                            content: Text("Token: $token"),
                          ),
                        );
                      }
                    },
                  ),
                ],
              ),
            );
          },
        ),
      ),
    );
  }
}
3
likes
150
points
8
downloads

Publisher

verified publishermaxint.com

Weekly Downloads

Teller.io connect SDK for Flutter. Instantly connect your app to thousands of financial institutions

Homepage

Topics

#sdk #teller #openbanking

Documentation

API reference

License

MIT (license)

Dependencies

alfred, flutter, flutter_inappwebview, html, url_launcher

More

Packages that depend on teller_connect