tencent_float_chat_widget 1.0.3 copy "tencent_float_chat_widget: ^1.0.3" to clipboard
tencent_float_chat_widget: ^1.0.3 copied to clipboard

PlatformAndroidiOS
unlisted

A plugin providing a floating chat widget integrated with Tencent's chat services for real-time messaging.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:get/get.dart';
import 'package:tencent_float_chat_widget/tencent_float_chat_widget.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    return GetMaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Float chat example app'),
        ),
        resizeToAvoidBottomInset: false,
        body: OrientationBuilder(
          builder: (BuildContext context, Orientation orientation) {
            debugPrint(orientation.toString());
            return const Stack(
              children: [
                Center(
                  child: FloatChatWidget(roomId: ''),
                ),
                InputWidget(),
              ],
            );
          },
        ),
      ),
    );
  }
}
1
likes
120
points
194
downloads

Publisher

verified publishertrtc.io

Weekly Downloads

A plugin providing a floating chat widget integrated with Tencent's chat services for real-time messaging.

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

extended_text, extended_text_field, flutter, fluttertoast, get, tencent_cloud_chat_sdk

More

Packages that depend on tencent_float_chat_widget