chore: Set a maxsize for textfields

This commit is contained in:
Krille 2024-05-15 11:59:19 +02:00
parent 8a64bdd82d
commit 62fcea5b0b
No known key found for this signature in database
GPG key ID: E067ECD60F1A0652

View file

@ -474,6 +474,9 @@ class InputBar extends StatelessWidget {
keyboardType: keyboardType!,
textInputAction: textInputAction,
autofocus: autofocus!,
inputFormatters: [
LengthLimitingTextInputFormatter((maxPDUSize / 3).floor()),
],
onSubmitted: (text) {
// fix for library for now
// it sets the types for the callback incorrectly