All Projects → lishuhao → sy_flutter_alipay

lishuhao / sy_flutter_alipay

Licence: other
支付宝flutter插件

Programming Languages

ruby
36898 projects - #4 most used programming language
java
68154 projects - #9 most used programming language
objective c
16641 projects - #2 most used programming language
dart
5743 projects

Projects that are alternatives of or similar to sy flutter alipay

Django2 dailyfresh
dailyfresh电商项目,替换django框架为2.X并重构,美化了下后台管理页面,提供docker版本,该项目包含了实际开发中的电商项目中大部分的功能开发和知识点实践, 是一个非常不错的django学习项目,同时也记录在替换框架中遇到的坑,希望对各位的学习有所帮助。
Stars: ✭ 212 (+146.51%)
Mutual labels:  alipay
WHMCS-JSJ-API-Pay-Gateway
WHMCS 财务系统对接金莎云免签支付API(你们怎么用,与我无瓜好吧:)
Stars: ✭ 58 (-32.56%)
Mutual labels:  alipay
express
快递代拿系统,SpringBoot的最佳实践
Stars: ✭ 178 (+106.98%)
Mutual labels:  alipay
Omnipay Pingpp
A Ping++ driver for the Omnipay PHP payment processing library. 一个聚合了支付宝(APP、Wap、PC、即时到账、扫码、企业付款),微信(APP、公众号、红包), 银联网关、银联企业网银、Apple Pay、QQ 钱包、易宝支付、百度钱包、京东支付、京东白条、招行一网通、分期支付等国内主流支付渠道的聚合支付网关(Ping++, also known as Pingpp/Pingxx/Pingplusplus)
Stars: ✭ 227 (+163.95%)
Mutual labels:  alipay
Sdk3rd
第三方SDK集成库,授权/分享/支付
Stars: ✭ 249 (+189.53%)
Mutual labels:  alipay
AlipayIntegrationMVC
ASP.NET MVC支付宝实时支付
Stars: ✭ 42 (-51.16%)
Mutual labels:  alipay
Alipay
Alipay Node.js SDK 基于最新版蚂蚁金服 支付宝开发文档
Stars: ✭ 203 (+136.05%)
Mutual labels:  alipay
alipay kit
flutter版支付宝登录/支付
Stars: ✭ 240 (+179.07%)
Mutual labels:  alipay
WeUI-MiniApp
WeUI 小程序组件库,支付微信/支付宝/百度小程序平台。
Stars: ✭ 23 (-73.26%)
Mutual labels:  alipay
ZTVendorManager
基于友盟集成QQ,微信 ,微博 分享和登录功能,支付宝和微信支付功能。集成简单,使用方便。
Stars: ✭ 26 (-69.77%)
Mutual labels:  alipay
Best Pay Sdk
可能是最好的支付SDK
Stars: ✭ 2,651 (+2982.56%)
Mutual labels:  alipay
Monkeyking
MonkeyKing helps you to post messages to Chinese Social Networks.
Stars: ✭ 2,699 (+3038.37%)
Mutual labels:  alipay
laravel-payment
Omnipay ServiceProvider for Laravel.
Stars: ✭ 89 (+3.49%)
Mutual labels:  alipay
Merger
📲 Merge Your Qrcodes Together. Even Quicker.
Stars: ✭ 218 (+153.49%)
Mutual labels:  alipay
react-native-alipay
基于 React Native 的宝支付包,已更新到最新的支付宝 SDK 版本,支持Android/iOS。
Stars: ✭ 166 (+93.02%)
Mutual labels:  alipay
Alipay Sdk Java All
支付宝开放平台 Alipay SDK for Java
Stars: ✭ 210 (+144.19%)
Mutual labels:  alipay
direct-alipay
alipay api for nodejs
Stars: ✭ 36 (-58.14%)
Mutual labels:  alipay
mpapi
🐤 小程序API兼容插件,一次编写,多端运行。支持:微信小程序、支付宝小程序、百度智能小程序、字节跳动小程序
Stars: ✭ 40 (-53.49%)
Mutual labels:  alipay
ZmopSharp
ZMOP (芝麻信用开放平台) SDK for .NET
Stars: ✭ 11 (-87.21%)
Mutual labels:  alipay
XposedManyMoney
Xposed 修改微信、QQ、TIM、支付宝余额。
Stars: ✭ 36 (-58.14%)
Mutual labels:  alipay

I'm sorry I cannot offer support for this package any more. Feel free to fork it, you have the source

Build Status

sy_flutter_alipay

flutter 支付宝插件

安装

首先在pubspec.ymal 添加依赖

iOS

添加urlScheme

添加urlScheme

参考支付宝文档

Android

无需配置

示例

import 'package:flutter/material.dart';
import 'package:sy_flutter_alipay/sy_flutter_alipay.dart';

void main() => runApp(new MyApp());

class MyApp extends StatefulWidget {
  @override
  _MyAppState createState() => new _MyAppState();
}

class _MyAppState extends State<MyApp> {
  @override
  void initState() {
    super.initState();
  }

  @override
  Widget build(BuildContext context) {
    return new MaterialApp(
      home: new Scaffold(
        appBar: new AppBar(
          title: const Text('sy_flutter_alipay example'),
        ),
        body: new Center(
          child: RaisedButton(
              child: Text('支付'),
              onPressed: () async {
                const payInfo ="从服务端获取的支付参数";
                var result = await SyFlutterAlipay.pay(
                    payInfo,
                    urlScheme: '你的ios urlScheme', //前面配置的urlScheme
                    isSandbox: true //是否是沙箱环境,只对android有效
                );
                print(result);
              }),
        ),
      ),
    );
  }
}

其它Flutter plugin

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].