From 5f9a1e7b5fc3c644cbd4a62d89085fae0fc36496 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Elias=20M=C3=BCller?= Date: Thu, 10 Aug 2023 20:59:24 +0200 Subject: [PATCH] Added background color in safe area --- lib/view/pages/talk/chatView.dart | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/view/pages/talk/chatView.dart b/lib/view/pages/talk/chatView.dart index ed8ef56..9f37d91 100644 --- a/lib/view/pages/talk/chatView.dart +++ b/lib/view/pages/talk/chatView.dart @@ -108,7 +108,10 @@ class _ChatViewState extends State { children: messages.reversed.toList(), ), ), - SafeArea(child: ChatTextfield(widget.room.token)), + Container( + color: Theme.of(context).colorScheme.background, + child: SafeArea(child: ChatTextfield(widget.room.token)), + ) ], ), )