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

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'),
    );
  }
}
40
likes
0
pub points
79%
popularity

Publisher

verified publishercodeboxr.com

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