mirror of
https://gitlab.com/comunic/comunicmobile
synced 2024-11-22 04:49:21 +00:00
Limit new messages length
This commit is contained in:
parent
0e8803c6a0
commit
91b5d55a83
@ -244,14 +244,29 @@ class _ConversationScreenState extends State<ConversationScreen> {
|
||||
// Message area
|
||||
new Flexible(
|
||||
child: new TextField(
|
||||
maxLines: null,
|
||||
maxLength: 200,
|
||||
maxLengthEnforced: true,
|
||||
|
||||
// Show max length only when there is some text already typed
|
||||
buildCounter: (
|
||||
BuildContext context, {
|
||||
@required int currentLength,
|
||||
@required int maxLength,
|
||||
@required bool isFocused,
|
||||
}) =>
|
||||
currentLength > 0
|
||||
? Text("$currentLength/$maxLength")
|
||||
: Container(),
|
||||
enabled: !_isSendingMessage,
|
||||
controller: _textEditingController,
|
||||
onChanged: _updatedText,
|
||||
onSubmitted: _isMessageValid
|
||||
? (s) => _submitTextMessage(context, s)
|
||||
: null,
|
||||
decoration:
|
||||
new InputDecoration.collapsed(hintText: tr("Send a message")),
|
||||
decoration: new InputDecoration.collapsed(
|
||||
hintText: tr("Send a message"),
|
||||
),
|
||||
),
|
||||
),
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user