Cached network images

This commit is contained in:
2024-05-03 12:15:54 +08:00
parent 9df4aba56c
commit e080f49935
11 changed files with 147 additions and 23 deletions

View File

@ -250,10 +250,4 @@ class _ChatScreenWidgetState extends State<ChatScreenWidget> {
onCallEnded: () => _chat.setOngoingCall(null),
);
}
@override
void deactivate() {
_chat.unFocus();
super.deactivate();
}
}

View File

@ -36,7 +36,7 @@ class _ChatIndexScreenState extends State<ChatIndexScreen> {
return IndentWrapper(
title: AppLocalizations.of(context)!.chat,
appBarActions: chat.focusChannel != null
appBarActions: isLargeScreen && chat.focusChannel != null
? [
ChannelCallAction(
call: chat.ongoingCall,