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

outdated

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
0
pub points
35%
popularity

Publisher

unverified uploader

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

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on bex_flutter_plugin