fluwx 0.0.2 copy "fluwx: ^0.0.2" to clipboard
fluwx: ^0.0.2 copied to clipboard

outdated

A implement of WeChatSDK on Flutter.Let's make it easier with Fluwx.

example/lib/main.dart

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

import 'package:fluwx/fluwx.dart';
import 'package:fluwx_example/share_music.dart';
import 'package:fluwx_example/share_web_page.dart';
import 'share_image_page.dart';
import 'share_text_image.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();
    Fluwx.registerApp(RegisterModel(appId: "wxd930ea5d5a258f4f"));
  }

  // Platform messages are asynchronous, so we initialize in an async method.
  Future<void> initPlatformState() async {}

  @override
  Widget build(BuildContext context) {
    return new MaterialApp(
      routes: <String, WidgetBuilder>{
        "shareText": (context) => ShareTextPage(),
        "shareImage":(context) => ShareImagePage(),
        "shareWebPage":(context) => ShareWebPagePage(),
        "shareMusic":(context) => ShareMusicPage(),
      },
      home: new Scaffold(
          appBar: new AppBar(
            title: const Text('Plugin example app'),
          ),
          body: ShareSelectorPage()),
    );
  }
}

class ShareSelectorPage extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return new Column(
      children: <Widget>[
        new OutlineButton(onPressed: () {
          Navigator.of(context).pushNamed("shareText");
        }, child: const Text("share text")),
        new OutlineButton(onPressed: () {
          Navigator.of(context).pushNamed("shareImage");
        }, child: const Text("share image")),
        new OutlineButton(onPressed: () {
          Navigator.of(context).pushNamed("shareWebPage");

        }, child: const Text("share webpage")),
        new OutlineButton(onPressed: () {
          Navigator.of(context).pushNamed("shareMusic");

        }, child: const Text("share music")),
      ],
    );
  }
}
195
likes
0
pub points
97%
popularity

Publisher

unverified uploader

A implement of WeChatSDK on Flutter.Let's make it easier with Fluwx.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on fluwx