tim_ui_kit_calling_plugin 0.3.0 copy "tim_ui_kit_calling_plugin: ^0.3.0" to clipboard
tim_ui_kit_calling_plugin: ^0.3.0 copied to clipboard

Tencent Cloud IM Voive/Video Calling plug-in integrate Tencent Real-Time communication(TRTC) to Tencent Cloud IM Chat, used for both single and multi-person calling.

example/main.dart

import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
import 'package:tim_ui_kit_calling_plugin/tim_ui_kit_calling_plugin.dart';

void main() {
  runApp(MaterialApp(
    navigatorKey: TUICalling.navigatorKey,
    home: Home(),
  ));
}

class Home extends StatefulWidget {
  const Home({Key? key}) : super(key: key);

  @override
  _HomeState createState() => _HomeState();
}

class _HomeState extends State<Home> {
  final _calling = TUICalling();

  @override
  void initState() {
    super.initState();
    final userID = '1234756';
    final userSig = ''; // userSig
    final sdkAppId = 0; // 控制台申请的sdkAppID
    _calling.init(sdkAppID: sdkAppId, userID: userID, userSig: userSig);
    _calling.enableFloatingWindow();
  }

  @override
  Widget build(BuildContext context) {
    // TODO: implement build
    // throw UnimplementedError();
    return Container();
  }
}
10
likes
0
pub points
68%
popularity

Publisher

verified publishercomm.qq.com

Tencent Cloud IM Voive/Video Calling plug-in integrate Tencent Real-Time communication(TRTC) to Tencent Cloud IM Chat, used for both single and multi-person calling.

License

unknown (LICENSE)

Dependencies

flutter, flutter_spinkit, fluttertoast, tencent_im_base, tencent_trtc_cloud, wakelock

More

Packages that depend on tim_ui_kit_calling_plugin