ngenius_flutter_sdk 1.0.5
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.
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(),
);
}
}