moosyl 1.0.3 copy "moosyl: ^1.0.3" to clipboard
moosyl: ^1.0.3 copied to clipboard

The Moosyl Flutter SDK is a powerful tool for integrating payment solutions with Mauritania's popular banking apps, such as Bankily, Sedad, and Masrivi

example/lib/main.dart

// ignore_for_file: avoid_print

import 'package:flutter/material.dart';
import 'package:moosyl/moosyl.dart';

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

class MyApp extends StatelessWidget {
  const MyApp({super.key});
  static const colorScheme = ColorScheme.light(
    primary: Color(0xFF4445F4),
    onPrimary: Color(0xFFFFFFFF),
    surface: Color(0xFFF0F0F0),
    onSurface: Color(0xFF000000),
    secondary: Color(0xFFEAF1FF),
    onSecondary: Color(0xFF000000),
    error: Color(0xFFCE2C2C),
    tertiary: Color(0xFF01D066),
  );

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Moosyl  Demo',
      localizationsDelegates: MoosylLocalization.localizationsDelegates,
      supportedLocales: MoosylLocalization.supportedLocales,
      locale: const Locale('en'),
      theme: ThemeData(
        colorScheme: colorScheme,
        useMaterial3: true,
      ),
      home: const MyHomePage(title: 'Moosyl Demo Home Page'),
    );
  }
}

class MyHomePage extends StatefulWidget {
  const MyHomePage({super.key, required this.title});

  final String title;

  @override
  State<MyHomePage> createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        backgroundColor: Theme.of(context).colorScheme.inversePrimary,
        title: Text(widget.title),
      ),
      body: MoosylView(
        publishableApiKey: 'YOUR_PUBLISHABLE_API_KEY',
        transactionId: 'YOUR_TRANSACTION_ID',
        organizationLogo: const Text('Moosyl'),
        fullPage: false,
        customHandlers: {
          PaymentMethodTypes.bimBank: () {
            print('Custom handler for BIM Bank payment method');
          },
        },
        onPaymentSuccess: () {
          print('Payment was successful!');
        },
      ),
    );
  }
}
7
likes
130
points
475
downloads
screenshot

Publisher

verified publishersoftware-savants.com

Weekly Downloads

The Moosyl Flutter SDK is a powerful tool for integrating payment solutions with Mauritania's popular banking apps, such as Bankily, Sedad, and Masrivi

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

file_picker, flutter, flutter_hooks, flutter_localizations, http, intl, mime, modal_bottom_sheet, provider

More

Packages that depend on moosyl