flutter_pix_pagstar 1.0.3 copy "flutter_pix_pagstar: ^1.0.3" to clipboard
flutter_pix_pagstar: ^1.0.3 copied to clipboard

A package by Pagstar to facilitate Pix transactions with QR Code or random key, featuring customizable design.

example/lib/main.dart

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

void main() {
  //TODO: input your credentials
  FlutterPixPagstar.init(
    authorizationToken: 'your_authorization_token',
    tenant: 'your_tenant_id',
  );
  //PixPagstar.setTheme(ThemeData.dark());
  runApp(const MyApp());
}

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Pix Pagstar Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: const MyHomePage(title: 'Pix Pagstar Demo Home Page'),
    );
  }
}

class MyHomePage extends StatelessWidget {
  const MyHomePage({
    Key? key,
    required this.title,
  }) : super(key: key);

  final String title;

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text(title),
      ),
      body: Center(
        child: Column(
          mainAxisAlignment: MainAxisAlignment.center,
          children: <Widget>[
            const Text(
              'Welcome to the Pix Pagstar example!',
            ),
            ElevatedButton(
              onPressed: () {
                FlutterPixPagstar.selectValuePage(
                  context: context,
                  headerText: "Digite o valor do Pix",
                  buttonText: "CONTINUAR",
                  transactionTitle: "Copie o código para pagar",
                  subtitleText:
                      "Escolha a opção de pagar com Pix e cole o código abaixo:",
                  transactionButtonLabel: "COPIAR CÓDIGO",
                  feedbackText: "Copiado para a área de tranferência!",
                  cancelButtonLabel: "CANCELAR",
                  successMessage: 'Pagamento recebido',
                  returnButtonLabel: "Voltar ao início",
                );
              },
              child: const Text('Create Pix Transaction'),
            ),
          ],
        ),
      ),
    );
  }
}
10
likes
140
points
27
downloads

Publisher

unverified uploader

Weekly Downloads

A package by Pagstar to facilitate Pix transactions with QR Code or random key, featuring customizable design.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter, http

More

Packages that depend on flutter_pix_pagstar