Added background color in safe area
This commit is contained in:
@ -108,7 +108,10 @@ class _ChatViewState extends State<ChatView> {
|
|||||||
children: messages.reversed.toList(),
|
children: messages.reversed.toList(),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
SafeArea(child: ChatTextfield(widget.room.token)),
|
Container(
|
||||||
|
color: Theme.of(context).colorScheme.background,
|
||||||
|
child: SafeArea(child: ChatTextfield(widget.room.token)),
|
||||||
|
)
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
|
Reference in New Issue
Block a user