paymentez 1.0.4 copy "paymentez: ^1.0.4" to clipboard
paymentez: ^1.0.4 copied to clipboard

Paquete para agregar tarjetas en paymentez, sirve para proyectos que no tienen certificación PCI.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:paymentez/paymentez.dart';

void main() {
  runApp(MyApp());
}

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Paymentez',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: MyHomePage(title: 'Add card Paymentez'),
    );
  }
}

class MyHomePage extends StatefulWidget {
  MyHomePage({Key key, this.title}) : super(key: key);
  final String title;

  @override
  _MyHomePageState createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text(widget.title),
      ),
      body: Center(
        child: Column(
          mainAxisAlignment: MainAxisAlignment.center,
          children: <Widget>[
            MaterialButton(
              elevation: 10,
              color: Colors.amber,
              child: Text('Agregar tarjeta'),
              onPressed: (){

                // showOtpPaymentez(
                //     context: context,
                //     btnColorBorderInput: Color(0xFFE7004C),
                //     btnColorFillInput: Colors.white,
                //     btnColorFocusInput: Color(0xFFE7004C),
                //     btnColorSend: Color(0xFFE7004C),
                //     btnTextCancel: "Cancelar",
                //     btnTextSend: "Enviar",
                //     colorTextInput: Colors.black45,
                //     textHintInput: "Ingrese su codigo",
                //     message: "Para realizar la validación si tu eres el propietario de la tarjeta, ingresa el valor de la transferencia que se ralizó a tu cuenta.",
                //     request: (String otp) {
                //       print(otp);
                //     });

              showDialogPaymentez(
                  context: context,
                  isDebug: true,
                  uid: 'ec774d32-8c3d-4df5-af5e-77e5177f4d1d',
                  email: 'user@softnux.io',
                  environment: 'stg', // stg -> developer or prod -> production
                  paymentClientAppCode: 'TPP3-EC-CLIENT',
                  paymentClientAppKey: 'ZfapAKOk4QFXheRNvndVib9XU3szzg',
                  background: 'F3F3F5',
                  btnBackground1: 'f02b6c',
                  btnBackground2: 'f02b6c',
                  textAddCard: 'Add card',
                  textProcessingCard: 'Processing card',
                  funReturnData: (DataModel data, controller) {
                    switch (data.status) {
                      case 'success':
                        print('success card with paymentez');
                        print(data.cvc);

                        // metodo controller del web view para cerrar la ventana
                        controller.goBack();

                        // metodo para cerrar el Dialog
                        Navigator.of(context).pop();
                        break;

                      case 'pending' :
                        print('review card with paymentez');

                        print(data.cvc);

                        controller.goBack();
                        Navigator.of(context).pop();
                        break;

                      case 'failure':
                        print('failure card with paymentez');
                        controller.goBack();
                        Navigator.of(context).pop();
                        break;

                      case 'error':
                        print(data.error.type);
                        //todo se puede agregar una notificación que hay un error al querer agregar la tarjeta.
                        break;
                    }
                  }
              );
            },)
          ],
        ),
      )
    );
  }
}
3
likes
110
pub points
67%
popularity

Publisher

verified publishersoftnux.io

Paquete para agregar tarjetas en paymentez, sirve para proyectos que no tienen certificación PCI.

Repository (GitHub)
View/report issues

Documentation

API reference

License

unknown (LICENSE)

Dependencies

flutter, flutter_inappwebview

More

Packages that depend on paymentez