Package make it easy to use the Mono connect widget

  packages, Packages, Widgets

Flutter Mono

** This is an unofficial SDK for flutter

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

camera_flash Screen Shots

rocket 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'),
      )

      ...
  

sparkles Contribution

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

Download Flutter Mono source code on GitHub