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