mirror of
https://github.com/twonlyapp/twonly-app.git
synced 2026-01-15 16:28:40 +00:00
fix #291
This commit is contained in:
parent
620d5f51f9
commit
a99f42c5c8
1 changed files with 15 additions and 13 deletions
|
|
@ -40,7 +40,6 @@ class _MessageInputState extends State<MessageInput> {
|
||||||
);
|
);
|
||||||
|
|
||||||
_textFieldController.clear();
|
_textFieldController.clear();
|
||||||
_emojiShowing = false;
|
|
||||||
widget.onMessageSend();
|
widget.onMessageSend();
|
||||||
setState(() {});
|
setState(() {});
|
||||||
}
|
}
|
||||||
|
|
@ -101,6 +100,8 @@ class _MessageInputState extends State<MessageInput> {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
child: ColoredBox(
|
||||||
|
color: Colors.transparent,
|
||||||
child: Padding(
|
child: Padding(
|
||||||
padding: const EdgeInsets.only(
|
padding: const EdgeInsets.only(
|
||||||
top: 8,
|
top: 8,
|
||||||
|
|
@ -116,6 +117,7 @@ class _MessageInputState extends State<MessageInput> {
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
),
|
||||||
Expanded(
|
Expanded(
|
||||||
child: TextField(
|
child: TextField(
|
||||||
controller: _textFieldController,
|
controller: _textFieldController,
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue