tencent_im_plugin 2.0.5 copy "tencent_im_plugin: ^2.0.5" to clipboard
tencent_im_plugin: ^2.0.5 copied to clipboard

This plug-in integrates Tencent cloud 'imsdk', realizes cross platform im access, and is compatible with Android and IOS devices.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:tencent_im_plugin_example/page/chat.dart';
import 'package:tencent_im_plugin_example/page/home.dart';
import 'package:tencent_im_plugin_example/page/interfaces_test.dart';
import 'package:tencent_im_plugin_example/page/login.dart';
import 'package:tencent_im_plugin_example/page/main/main.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(
      debugShowCheckedModeBanner: false,
      routes: {
        "/": (context) => HomePage(),
        "/interfaces_test": (context) => InterfacesTest(),
        "/login": (context) => Login(),
        "/main": (context) => Main(),
        "/chat": (context) => Chat(),
      },
    );
  }
}
copied to clipboard
16
likes
120
points
356
downloads

Publisher

verified publisherhuic.top

Weekly Downloads

2024.09.18 - 2025.04.02

This plug-in integrates Tencent cloud 'imsdk', realizes cross platform im access, and is compatible with Android and IOS devices.

Homepage
Repository (GitHub)

Documentation

API reference

License

unknown (license)

Dependencies

flutter, logger, uuid

More

Packages that depend on tencent_im_plugin