flutter_wechat 0.0.5 copy "flutter_wechat: ^0.0.5" to clipboard
flutter_wechat: ^0.0.5 copied to clipboard

outdated

A flutter plugin to use wechat

example/lib/main.dart

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

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

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

class _MyAppState extends State<MyApp> {
  String _platformVersion = 'Unknown';

  @override
  initState() {
    super.initState();
    initPlatformState();
  }

  // Platform messages are asynchronous, so we initialize in an async method.
  initPlatformState() async {
    // Platform messages may fail, so we use a try/catch PlatformException.

    await FlutterWechat.registerWechat("wxb25d3dec3db1affc");

    await FlutterWechat.shareVideo(imgUrl: "http://img.weidao.com/farm_index/logo.png", type:0,videoUrl: "http://v.weidao.com/pcshow_image/index_video.mp4",videoLowBandUrl: "http://v.weidao.com/pcshow_image/index_video.mp4");
    // If the widget was removed from the tree while the asynchronous platform
    // message was in flight, we want to discard the reply rather than calling
    // setState to update our non-existent appearance.
    if (!mounted)
      return;

    setState(() {

    });
  }

  @override
  Widget build(BuildContext context) {
    return new MaterialApp(
      home: new Scaffold(
        body: new Center(
          child: new Text('$_platformVersion\n'),
        ),
      ),
    );
  }
}
3
likes
0
pub points
30%
popularity

Publisher

unverified uploader

A flutter plugin to use wechat

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on flutter_wechat