stone_smart_flutter 1.3.0 copy "stone_smart_flutter: ^1.3.0" to clipboard
stone_smart_flutter: ^1.3.0 copied to clipboard

Plugin Flutter para integrar sua aplicação com o SDK Android da Stone 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({super.key});

  @override
  State<MyApp> 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('Stone Smart Flutter'),
            bottom: const TabBar(tabs: [
              Tab(
                child: Text("Vender"),
              ),
              Tab(
                child: Text("Transações"),
              )
            ]),
          ),
          body: TabBarView(
            children: [
              const PaymentPage(),
              Container(),
            ],
          ),
        ),
      ),
    );
  }
}
5
likes
0
points
401
downloads

Publisher

unverified uploader

Weekly Downloads

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

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter, interface_stone_smart_flutter

More

Packages that depend on stone_smart_flutter