minor updates

This commit is contained in:
Salvatore Giordano
2021-12-10 15:15:58 +01:00
parent ff2c8801d5
commit 0ec6e1c40f
3 changed files with 34 additions and 22 deletions
@@ -419,9 +419,9 @@ class MessageInputState extends State<MessageInput> {
@override
Widget build(BuildContext context) {
Widget child = ValueListenableBuilder<Message>(
Widget child = MessageValueListenableBuilder(
valueListenable: messageInputController,
builder: (context, value, wid) => DecoratedBox(
builder: (context, value, _) => DecoratedBox(
decoration: BoxDecoration(
color: _messageInputTheme.inputBackgroundColor,
),