Updated dependencies

This commit is contained in:
2024-03-23 23:38:20 +01:00
parent e7192008c0
commit 1374666858
9 changed files with 101 additions and 89 deletions

View File

@ -129,7 +129,10 @@ class _ChatViewState extends State<ChatView> {
),
Container(
color: Theme.of(context).colorScheme.background,
child: SafeArea(child: ChatTextfield(widget.room.token)),
child: TalkNavigator.isSecondaryVisible(context)
? ChatTextfield(widget.room.token)
: SafeArea(child: ChatTextfield(widget.room.token)
),
)
],
),