implemented support for viewing large group profile pictures
This commit is contained in:
@@ -50,13 +50,13 @@ class _ChatInfoState extends State<ChatInfo> {
|
||||
isGroup: isGroup,
|
||||
size: 80,
|
||||
),
|
||||
onTap: () {
|
||||
if (isGroup) return;
|
||||
TalkNavigator.pushSplitView(
|
||||
context,
|
||||
LargeProfilePictureView(widget.room.name),
|
||||
);
|
||||
},
|
||||
onTap: () => TalkNavigator.pushSplitView(
|
||||
context,
|
||||
LargeProfilePictureView(
|
||||
id: isGroup ? widget.room.token : widget.room.name,
|
||||
isGroup: isGroup,
|
||||
),
|
||||
),
|
||||
),
|
||||
const SizedBox(height: 30),
|
||||
Text(
|
||||
|
||||
Reference in New Issue
Block a user