flutter_bkash 0.1.0 copy "flutter_bkash: ^0.1.0" to clipboard
flutter_bkash: ^0.1.0 copied to clipboard

outdated

Flutter package for payment gateway bKash(Bangladesh).

example/lib/main.dart

import 'package:flutter/material.dart';

import 'pages/home_page.dart';

void main() {
  // it should be the first line in main method
  WidgetsFlutterBinding.ensureInitialized();
  runApp(const MyApp());
}

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

  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      theme: ThemeData(
        primarySwatch: Colors.pink,
        visualDensity: VisualDensity.adaptivePlatformDensity,
      ),
      debugShowCheckedModeBanner: false,
      home: const HomePage(title: 'bKash Demo'),
    );
  }
}
52
likes
0
points
78
downloads

Publisher

verified publishercodeboxr.com

Weekly Downloads

Flutter package for payment gateway bKash(Bangladesh).

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter, flutter_inappwebview

More

Packages that depend on flutter_bkash