msitef_payment_tech 1.1.0 copy "msitef_payment_tech: ^1.1.0" to clipboard
msitef_payment_tech: ^1.1.0 copied to clipboard

Plugin Flutter para integrar sua aplicação com o SDK Android do MSitef para meios de pagamento.

example/lib/main.dart

import 'package:flutter/material.dart';

import 'payment/payment_page.dart';

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

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

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

class _MyAppState extends State<MyApp> {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: DefaultTabController(
        length: 2,
        child: Scaffold(
          appBar: AppBar(
            title: const Text('MSitef Payment Tech'),
            bottom: const TabBar(tabs: [
              Tab(
                child: Text("Vender"),
              ),
              Tab(
                child: Text("Transações"),
              )
            ]),
          ),
          body: TabBarView(
            children: [
              const PaymentPage(),
              Container(),
            ],
          ),
        ),
      ),
    );
  }
}
1
likes
0
points
56
downloads

Publisher

verified publisherjylabtech.com.br

Weekly Downloads

Plugin Flutter para integrar sua aplicação com o SDK Android do MSitef para meios de pagamento.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

check_licence_tech, flutter, plugin_platform_interface

More

Packages that depend on msitef_payment_tech

Packages that implement msitef_payment_tech