replies now get displayed

This commit is contained in:
2024-05-01 17:37:03 +02:00
parent ae6b6511d7
commit 91ef689d2a
3 changed files with 122 additions and 39 deletions

View File

@ -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)
),
)
],