flutter_mq 0.0.3 copy "flutter_mq: ^0.0.3" to clipboard
flutter_mq: ^0.0.3 copied to clipboard

A new Flutter plugin for meiqia

example/lib/main.dart

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

import 'package:flutter/services.dart';
import 'package:flutter_mq/flutter_mq.dart';

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

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

class _MyAppState extends State<MyApp> {
  String res = "未初始化";
  String id = "";

  @override
  void initState() {
    super.initState();
    initMeiQia();
  }

  Future<void> initMeiQia() async {
    try {
      res = await FlutterMq.initMeiQia("你的appKey");
    } on PlatformException {
      res = 'Failed to get init.';
    }
    if (!mounted) return;

    setState(() {
      res = res;
    });
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
          appBar: AppBar(
            title: const Text('客服Example'),
          ),
          body: Column(
            children: <Widget>[
              Center(
                child: Text('Running on: $res\n'),
              ),
              TextField(
                onChanged: (s){
                  id = s;
                },
                controller: TextEditingController(text: id),
              ),
              FlatButton(
                  onPressed: () async {
                    //
                    Map<String,String> clientInfo = new Map();
                    clientInfo["userId"] = "";
                    clientInfo["订单ID"] = id;
                    await FlutterMq.openMeiQia(id: "id",userInfo: clientInfo,isUpdate: true);
                  },
                  child: Text("打开客服")
              )
            ],
          )
      ),
    );
  }
}
0
likes
25
pub points
0%
popularity

Publisher

unverified uploader

A new Flutter plugin for meiqia

Repository (GitHub)
View/report issues

License

BSD-2-Clause (LICENSE)

Dependencies

flutter

More

Packages that depend on flutter_mq