easebuzz_flutter_sdk 1.0.1 copy "easebuzz_flutter_sdk: ^1.0.1" to clipboard
easebuzz_flutter_sdk: ^1.0.1 copied to clipboard

The Easebuzz Flutter SDK streamlines secure payment integration across Android, iOS, and web platforms.

example/lib/main.dart

import 'package:easebuzz_flutter_sdk_example/product_json.dart';
import 'package:flutter/material.dart';

import 'models/product.dart';
import 'screens/product_list_screen.dart';

void main() {
  runApp(const MyApp());
}

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

  @override
  Widget build(BuildContext context) {
    final products = productJson.map((json) => Product.fromJson(json)).toList();

    return MaterialApp(
      title: 'Product Store',
      debugShowCheckedModeBanner: false,
      theme: ThemeData(
        primarySwatch: Colors.blue,
        useMaterial3: true,
        cardTheme: CardTheme(
          elevation: 4,
          shape: RoundedRectangleBorder(
            borderRadius: BorderRadius.circular(8),
          ),
        ),
      ),
      home: ProductListScreen(products: products),
    );
  }
}
8
likes
150
points
40
downloads

Publisher

verified publishertechienutzitservices.com

Weekly Downloads

The Easebuzz Flutter SDK streamlines secure payment integration across Android, iOS, and web platforms.

Homepage
Repository (GitHub)
View/report issues

Topics

#payment #sdk #cross-platform #flutter #easebuzz

Documentation

API reference

License

MIT (license)

Dependencies

crypto, dio, flutter, flutter_web_plugins, plugin_platform_interface, web

More

Packages that depend on easebuzz_flutter_sdk