flutter_mono 1.0.2 copy "flutter_mono: ^1.0.2" to clipboard
flutter_mono: ^1.0.2 copied to clipboard

outdated

An unofficial plugin for using Mono Connect SDK https://mono.co

Flutter Mono #

** This is an unofficial SDK for flutter

This package make it easy to use the Mono connect widget in a flutter project.

📸 Screen Shots #

🚀 How to Use plugin #

  • Launch MonoFlutter with launchMono method
import 'package:flutter_mono/flutter_mono.dart';
    
  void launch() async {
      await MonoFlutter.launchMono(
              context,
              key: 'Your Public Key', // from https://app.withmono.com/apps
              onClosed: () {
                 Navigator.pop(context);
                  print('Widget closed')
              },
              onSuccess: (String code) {
                 Navigator.pop(context);
                  print("Linked successfully: $code");
              },
        );
  }
  • Use MonoView widget
import 'package:flutter_mono/flutter_mono.dart';
    
     ...

     MonoView(
        apiKey: 'Your Public Key', // from https://app.withmono.com/apps
         onClosed: () {
            Navigator.pop(context);
            print('Widget closed')
         },
         onSuccess: (String code) {
            Navigator.pop(context);
            print("Linked successfully: $code");
         },
        error: Text('Error'),
      )

      ...
  

✨ Contribution #

Lots of PR's would be needed to improve this plugin. So lots of suggestions and PRs are welcome.

2
likes
40
points
37
downloads

Publisher

verified publishercodenka.com

Weekly Downloads

An unofficial plugin for using Mono Connect SDK https://mono.co

Repository (GitHub)
View/report issues

License

MIT (license)

Dependencies

flutter, flutter_webview_plugin

More

Packages that depend on flutter_mono