Danmaku Chat | Send emoji | Hide the danmaku (bottom bar: settings) |
![]() | ![]() | ![]() |
// Position: Android/tuiroomkit/src/main/java/com/tencent/cloud/tuikit/roomkit/view/page/widget/FloatChatFloatChat└── View│ └── MessageBarrageView.java // Interface for each barrage message│ └── FloatChatSendView.java // Input box interface for barrage sending└── TUIFloatChatButton.java // Send button for barrage└── TUIFloatChatDisplayView.java // Area for showing barrage messages
FloatChat└── FloatChatButton.swift // Barrage sending button└── FloatChatDisplayView.swift // Area for showing barrage messages└── FloatChatInputController.swift // Input box interface for barrage sending
tencent_float_chat_widget/lib/float_chat
. For easier UI customization, an introduction to the barrage file is provided here.// File location: tencent_float_chat_widget/lib/float_chat
float_chat├── widgets├── emoji_panel.dart // Emoji pack panel widget├── float_chat_button.dart // Barrage chat button├── input_widget.dart // Input box widget for sending barrage├── message_item.dart // widget for each barrage message└── message_widget.dart // ALL barrage message widget└── view.dart // Overall barrage widget displayed inside the room (including the barrage chat button and ALL barrage message widgets)
TUIFloatChatButton button = new TUIFloatChatButton(mContext, roomId);mButtonContainer.addView(button);
TUIFloatChatDisplayView view = new TUIFloatChatDisplayView(mContext, roomId);mLayoutDisplayViewContainer.addView(view);
let floatchatButton = FloatChatButton()floatchatButton.updateRoomId(roomId:"your room Id") // Set roomIdself.view.addSubView(floatchatButton)
let displayView = FloatChatDisplayView()self.view.addSubView(displayView)
import 'package:tencent_float_chat_widget/tencent_float_chat_widget.dart';FloatChatWidget(roomId: yourRoomId) // Layout where you need, input the roomId of the room for sending and receiving messages.
Stack
in the page you are laying out to prevent it from being covered by other components. Once the layout is completed, it is not shown by default. Once you click the bullet screen chat button in FloatChatWidget, the input box and keyboard will pop up automatically .import 'package:tencent_float_chat_widget/tencent_float_chat_widget.dart';Stack(children: [...yourWidget, // Another one of your widgets, here as an exampleconst InputWidget(), // Input box for sending bullet screen chat messages],)
import 'package:tencent_float_chat_widget/tencent_float_chat_widget.dart';FloatChatManager().deleteStatus();