Added background color in safe area

This commit is contained in:
Elias Müller 2023-08-10 20:59:24 +02:00
parent 0be070b460
commit 5f9a1e7b5f

View File

@ -108,7 +108,10 @@ class _ChatViewState extends State<ChatView> {
children: messages.reversed.toList(),
),
),
SafeArea(child: ChatTextfield(widget.room.token)),
Container(
color: Theme.of(context).colorScheme.background,
child: SafeArea(child: ChatTextfield(widget.room.token)),
)
],
),
)