如何在flutter框架中集成支付网关。有没有我可以随时使用的图书馆?我是否需要在iOS和Android中单独执行此操作? 在那种情况下,哪个是印度最好的图书馆?
答案 0 :(得分:10)
答案 1 :(得分:7)
在Flutter直播期间,他们宣布了Flutter App的付款集成。您可以从下面的指定链接中找到SDK。所有文档都可以在该网站上找到。
答案 2 :(得分:5)
我能够使用webview和flutter_webview_plugin集成Stripe
String test = "Test Charge";
int amount = 100;
@override
Widget build(BuildContext context) {
return new MaterialApp(
home: new WebviewScaffold(
url: new Uri.dataFromString('''
<html>
<head>
<meta name="viewport" content="width=device-width">
</head>
<center>
<body>
<form action="Your Server" method="POST">
<script
src="https://checkout.stripe.com/checkout.js" class="stripe-button"
data-key="pk_test_key"
data-amount="$amount"
data-name="$test"
data-description="My Order"
data-image="https://stripe.com/img/documentation/checkout/marketplace.png"
data-locale="auto"
data-currency="eur">
</script>
</form>
</body>
</center>
</html>
''', mimeType: 'text/html').toString(),
));
}
您需要为实时付款设置服务器。可以找到更多信息: https://stripe.com/docs/checkout#integration-simple
答案 3 :(得分:2)
转到https://pub.dartlang.org/flutter并搜索“付款”一词,您会看到类似Paystack
和Stripe
的结果
这只是时间问题,每个Payment Gateway都应为Flutter提供自己的官方插件