replies now get displayed
This commit is contained in:
@ -71,6 +71,7 @@ class _ChatViewState extends State<ChatView> {
|
||||
chatData: widget.room,
|
||||
refetch: _query,
|
||||
isRead: element.id <= commonRead,
|
||||
selfId: widget.selfId,
|
||||
)
|
||||
);
|
||||
});
|
||||
@ -129,8 +130,8 @@ class _ChatViewState extends State<ChatView> {
|
||||
Container(
|
||||
color: Theme.of(context).colorScheme.background,
|
||||
child: TalkNavigator.isSecondaryVisible(context)
|
||||
? ChatTextfield(widget.room.token)
|
||||
: SafeArea(child: ChatTextfield(widget.room.token)
|
||||
? ChatTextfield(widget.room.token, selfId: widget.selfId)
|
||||
: SafeArea(child: ChatTextfield(widget.room.token, selfId: widget.selfId)
|
||||
),
|
||||
)
|
||||
],
|
||||
|
Reference in New Issue
Block a user