Quantcast
Channel: Active questions tagged paypal - Stack Overflow
Viewing all articles
Browse latest Browse all 518

execute payment paypal flutter

$
0
0

I am trying to implement paypal payments in a WebApp, but WebView is not compatible with the web.i also tried dart: ui but without success.

//ignore: undefined_prefixed_name  ui.platformViewRegistry.registerViewFactory('paypal-html',      (int viewId) => IFrameElement()        ..width = MediaQuery.of(context).size.width.toString()        ..height = MediaQuery.of(context).size.height.toString()        ..src = checkoutUrl        ..style.border = 'none');SizedBox(          width: MediaQuery.of(context).size.width,          height: MediaQuery.of(context).size.height,          child: HtmlElementView(viewType: 'paypal-html'),        ),

Do you know how I can do it?


Viewing all articles
Browse latest Browse all 518

Trending Articles