1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2024-11-22 12:59:21 +00:00

Reduce minimal messages size

This commit is contained in:
Pierre HUBERT 2020-05-09 14:57:59 +02:00
parent 4db9191fd8
commit ce908d1b51

View File

@ -253,7 +253,7 @@ class _ConversationScreenState extends SafeState<ConversationScreen> {
void _updatedText(String text) {
setState(() {
_isMessageValid = text.length > 4;
_isMessageValid = text.length > 2;
});
}