Added safe area around textinput in talk

This commit is contained in:
2023-08-10 20:29:55 +02:00
parent 7fe648ea77
commit 0be070b460
2 changed files with 2 additions and 2 deletions

View File

@ -108,7 +108,7 @@ class _ChatViewState extends State<ChatView> {
children: messages.reversed.toList(),
),
),
ChatTextfield(widget.room.token),
SafeArea(child: ChatTextfield(widget.room.token)),
],
),
)