chico_flutter_sdk 0.0.13 copy "chico_flutter_sdk: ^0.0.13" to clipboard
chico_flutter_sdk: ^0.0.13 copied to clipboard

Chico conta a história dos seus clientes por meio das suas transações financeiras.

chico_flutter_sdk #

pub package

Flutter Widget to connect you company to Open Banking using Chico SDK.

Usage #

To use this SDK, add chico_flutter_sdk as a dependency in your pubspec.yaml file.

Example #

class ChicoOnboarding extends StatefulWidget {
  const ChicoOnboarding({Key? key}) : super(key: key);

  @override
  State<ChicoOnboarding> createState() => _ChicoOnboardingState();
}

class _ChicoOnboardingState extends State<ChicoOnboarding> {
  final chicoClient = "demo";
  final cpf = "000.111.222-33";
  late Future<JWTResponse> chicoToken;

  @override
  Widget build(BuildContext context) {
    // create function to sign your JWT
    chicoToken = signCpf(cpf, chicoClient);

    return Scaffold(
        backgroundColor: Colors.white,
        body: Center(
            child: ChicoConnector(
                client: chicoClient,
                token: chicoToken,
                height: 72,
                width: 320,
                environment: ChicoEnvironmentType.development,
            );));
  }
}

class App extends StatelessWidget {
  const App({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      theme: ThemeData(
        appBarTheme: const AppBarTheme(
          backgroundColor: Colors.white,
          foregroundColor: Colors.black,
          shadowColor: Colors.white,
        ),
      ),
      home: const SizedBox(
        height: 64,
        width: 256,
        child: ChicoOnboarding(),
      ),
    );
  }
}

License #

Proprietary Software

About Chico #

Chico is a financial intelligence API for LatAm. The company leverages alternative consumer financial data so banks and fintechs can properly build, deploy and underwrite financial solutions at scale.

1
likes
0
pub points
44%
popularity

Publisher

verified publisherchico.ai

Chico conta a história dos seus clientes por meio das suas transações financeiras.

Homepage

License

unknown (license)

Dependencies

chico_harvest_plugin, flutter, mixpanel_flutter, webview_flutter

More

Packages that depend on chico_flutter_sdk