bex_flutter_plugin 1.1.4 copy "bex_flutter_plugin: ^1.1.4" to clipboard
bex_flutter_plugin: ^1.1.4 copied to clipboard

BKM Express Flutter Plugin, kullanıcının BKMExpress ile yapacağı ödemeler için kart eşleme ve güvenli ödeme yapma seçeneklerini sunmaktadır.

example/lib/main.dart

import 'package:bex_flutter_plugin_example/pairing.dart';
import 'package:bex_flutter_plugin_example/payment.dart';
import 'package:flutter/material.dart';

void main() => runApp(MyApp());

class MyApp extends StatefulWidget {
  @override
  _MyAppState createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: DefaultTabController(
        length: 2,
        child: Scaffold(
          appBar: AppBar(
            bottom: TabBar(
              tabs: [
                Tab(icon: Text("Payment")),
                Tab(icon: Text("Pairing")),
              ],
            ),
            title: Text('BKM Express Flutter Plugin'),
          ),
          body: TabBarView(
            children: [Payment(), Pairing()],
          ),
        ),
      ),
    );
  }
}
4
likes
130
points
21
downloads

Publisher

unverified uploader

Weekly Downloads

BKM Express Flutter Plugin, kullanıcının BKMExpress ile yapacağı ödemeler için kart eşleme ve güvenli ödeme yapma seçeneklerini sunmaktadır.

Homepage

Documentation

API reference

License

unknown (license)

Dependencies

flutter

More

Packages that depend on bex_flutter_plugin

Packages that implement bex_flutter_plugin