update flutter uikit to 1.7.1
This commit is contained in:
parent
b6ed4adc9c
commit
57d836fcb6
|
|
@ -1,3 +1,7 @@
|
|||
## 1.7.0+1
|
||||
|
||||
* Fix: An issue that caused errors on mentioning all members.
|
||||
|
||||
## 1.7.0
|
||||
|
||||
* Addition: Support for quickly navigating to the first unread message in a group chat with more than 20 new unread messages, using the dynamic tongue located in the top right corner of the screen. This feature allows for swift movement through the messages, regardless of their quantity.
|
||||
|
|
|
|||
|
|
@ -71,6 +71,8 @@ class TIMUIKitInputTextField extends StatefulWidget {
|
|||
|
||||
final List customEmojiStickerList;
|
||||
|
||||
final String? groupType;
|
||||
|
||||
/// sticker panel customization
|
||||
final Widget Function(
|
||||
{void Function() sendTextMessage,
|
||||
|
|
@ -98,7 +100,7 @@ class TIMUIKitInputTextField extends StatefulWidget {
|
|||
this.onChanged,
|
||||
this.isUseDefaultEmoji = false,
|
||||
this.customEmojiStickerList = const [],
|
||||
required this.model})
|
||||
required this.model, this.groupType})
|
||||
: super(key: key);
|
||||
|
||||
@override
|
||||
|
|
@ -569,7 +571,7 @@ class _InputTextFieldState extends TIMUIKitState<TIMUIKitInputTextField> {
|
|||
groupMemberList: model.groupMemberList,
|
||||
groupInfo: model.groupInfo,
|
||||
groupID: groupID,
|
||||
groupType: conversationModel.selectedConversation?.groupType),
|
||||
groupType: widget.groupType),
|
||||
),
|
||||
);
|
||||
final showName = _getShowName(memberInfo);
|
||||
|
|
|
|||
|
|
@ -406,6 +406,7 @@ class _TUIChatState extends TIMUIKitState<TIMUIKitChat> {
|
|||
: (widget.textFieldBuilder != null
|
||||
? widget.textFieldBuilder!(context)
|
||||
: TIMUIKitInputTextField(
|
||||
groupType: widget.conversation.groupType,
|
||||
model: model,
|
||||
controller: textFieldController,
|
||||
customEmojiStickerList:
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
name: tencent_cloud_chat_uikit
|
||||
description: Chat UI components library and basic chat business logic for Tencent Cloud Chat, helping you build In-APP Chat module easily.
|
||||
version: 1.7.0
|
||||
version: 1.7.0+1
|
||||
homepage: https://www.tencentcloud.com/products/im?from=pub
|
||||
repository: https://github.com/TencentCloud/chat-uikit-flutter
|
||||
documentation: https://comm.qq.com/im/doc/flutter/en/TUIKit/readme.html
|
||||
|
|
|
|||
Loading…
Reference in New Issue