wx_sdk 1.0.0 copy "wx_sdk: ^1.0.0" to clipboard
wx_sdk: ^1.0.0 copied to clipboard

微信sdk插件

example/lib/main.dart

import 'package:flutter/material.dart';


void main() {
  runApp(MyApp());
}

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

class _MyAppState extends State<MyApp> {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: "微信sdk flutter插件",
      home: Scaffold(
        appBar: AppBar(
          title: Text("微信sdk flutter插件 demo"),
        ),
        body: Center(
          child: Column(
            mainAxisAlignment: MainAxisAlignment.center,
            children: [
              FlatButton(onPressed: () async{
              }, child: Text("登录"))
            ],
          ),
        ),
      ),
    );
  }
}
0
likes
95
pub points
0%
popularity

Publisher

unverified uploader

微信sdk插件

Documentation

API reference

License

MIT (LICENSE)

Dependencies

dio, flutter

More

Packages that depend on wx_sdk