rongcloud_rtc_plugin 1.1.0+1 copy "rongcloud_rtc_plugin: ^1.1.0+1" to clipboard
rongcloud_rtc_plugin: ^1.1.0+1 copied to clipboard

discontinuedreplaced by: rongcloud_rtc_wrapper_plugin
outdated

RongCloud RTC Flutter Plugin

example/lib/main.dart

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

import 'package:rongcloud_im_plugin/rongcloud_im_plugin.dart';

import 'index_page.dart';
import 'user_data.dart';

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

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

class _MyAppState extends State<MyApp> {

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

  // Platform messages are asynchronous, so we initialize in an async method.
  Future<void> initPlatformState() async {
    // Platform messages may fail, so we use a try/catch PlatformException.
    RongcloudImPlugin.init(AppKey);

    int rc = await RongcloudImPlugin.connect(IMToken);
    print("连接 im " + rc.toString());


    // 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 MaterialApp(
      title: "flutter rtc demo",
      theme: ThemeData(
        primaryColor: Colors.blue,
      ),
      home: IndexPage(),
    );
  }
}
1
likes
0
pub points
0%
popularity

Publisher

unverified uploader

RongCloud RTC Flutter Plugin

Homepage

License

unknown (LICENSE)

Dependencies

flutter, rongcloud_im_plugin

More

Packages that depend on rongcloud_rtc_plugin