Browse Source

fix(chat): 修复礼物弹窗显示时键盘未隐藏问题

- 添加 FocusScope.of(context).unfocus() 隐藏键盘
- 确保礼物弹窗显示前键盘已收起
master
Jolie 3 months ago
parent
commit
67a4628d91
1 changed files with 2 additions and 0 deletions
  1. 2
      lib/pages/message/chat_page.dart

2
lib/pages/message/chat_page.dart

@ -103,6 +103,8 @@ class _ChatPageState extends State<ChatPage> {
//
void _showGiftPopup() {
//
FocusScope.of(context).unfocus();
final giftProducts = _controller.giftProducts.toList();
if (giftProducts.isEmpty) {
SmartDialog.showToast('礼物列表加载中,请稍候...');

Loading…
Cancel
Save