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

N-Genius Flutter SDK provides an easy-to-use integration for handling payments using N-Genius APIs in Flutter applications.

example/lib/main.dart

import 'package:flutter/material.dart';

import 'src/payment_dashboard.dart';

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

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'N-Genius Payment Integration',
      theme: ThemeData(
        useMaterial3: true,
        colorScheme: ColorScheme.fromSeed(
          seedColor: const Color(0xFF1E3A8A),
          brightness: Brightness.light,
        ),
      ),
      home: const NgeniusPaymentDashboard(),
    );
  }
}
7
likes
140
points
152
downloads

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

N-Genius Flutter SDK provides an easy-to-use integration for handling payments using N-Genius APIs in Flutter applications.

Repository (GitHub)
View/report issues

License

MIT (license)

Dependencies

flutter, plugin_platform_interface

More

Packages that depend on ngenius_flutter_sdk

Packages that implement ngenius_flutter_sdk