Oreofe Solarin

Results 14 comments of Oreofe Solarin

You initialize in the main function In your main.dart `void main(){ setupLocator(); await initializeFlutterFire(); runApp(child:MyApp()); }`

Is there any Platform specific code that is used in the Plugin. I want to try to add Web Support.

> > Is there any Platform specific code that is used in the Plugin. I want to try to add Web Support. > > Did you try to make it...

> I was able to get this to work on web but I had to create a [new package](https://github.com/djade007/flutter_paystack_client) for web, then wrap this plugin for mobile. Nice Plugin Works...

@wilburt I have created a PR https://github.com/wilburt/flutter_paystack/pull/94

@djade007 I'm not too sure if via the UI the a card can be processed due to the nature of the Paystack JS.https://paystack.com/docs/payments/accept-payments @wilburt Maybe you could look into finding...

@wilburt I'm trying work on the encryption natively on dart. I see that for android you use java. But.. the plugin extends a native channel for both android and iOS....

@wilburt, @djade007 Check out #104 I have written RSA encryption in dart.

@benjaminudoh10 It is not possible to await in `initState() ` it should not be asynchronous. Having `await` means that the Widget Build is delayed. I tried this and it worked:...