fix part screen voice input and adaption

This commit is contained in:
Chen Li
2025-08-16 14:28:15 +08:00
parent 9715a18c65
commit 8b0f5a92d4
5 changed files with 12 additions and 7 deletions

View File

@@ -381,4 +381,9 @@ class MessageService extends ChangeNotifier {
_messages.clear();
notifyListeners();
}
void removeNonListeningMessages() {
_messages.removeWhere((message) => message.status != MessageStatus.listening);
notifyListeners();
}
}