mono_flutter 0.0.5 copy "mono_flutter: ^0.0.5" to clipboard
mono_flutter: ^0.0.5 copied to clipboard

outdated

A Flutter plugin integrating the official android and ios SDK for Mono https://mono.co

mono_flutter #

pub package

A Flutter plugin integrating the official android and ios SDK for Mono (financial data Platform) (https://mono.co/)

Screenshot Screenshot

Usage #

Import package:mono_flutter/mono_flutter.dart and use the methods in MonoFlutter class.

Example:

import 'package:mono_flutter/mono_flutter.dart';

void main() async {
    runApp(App());
}

class App extends StatelessWidget {

    @override
    Widget build(BuildContext context) {
        return  Center(
          child: RaisedButton(
        child: Text('launch mono'),
        onPressed: () => Navigator.of(context)
            .push(CupertinoPageRoute(
                builder: (c) => MonoWebView(
                      apiKey: 'API_KEY',
                      onClosed: () {
                        print('Modal closed');
                      },
                      onSuccess: (code) {
                        print('Mono Success $code');
                      },
                    )))
            .then((code) => print(code)),
      ));
    }
}

checkout the example project for full implementation

13
likes
0
pub points
84%
popularity

Publisher

verified publisherwiseminds.cc

A Flutter plugin integrating the official android and ios SDK for Mono https://mono.co

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter, webview_flutter

More

Packages that depend on mono_flutter