increase caption length from 280 -> 5000

This commit is contained in:
Neeraj Gupta 2022-11-26 13:28:10 +05:30
parent 25a218e1fb
commit d969eb5581
No known key found for this signature in database
GPG key ID: 3C5A1684DC1729E1

View file

@ -13,7 +13,7 @@ class FileCaptionWidget extends StatefulWidget {
}
class _FileCaptionWidgetState extends State<FileCaptionWidget> {
int maxLength = 280;
static const int maxLength = 5000;
int currentLength = 0;
final _textController = TextEditingController();
final _focusNode = FocusNode();