chore: Set a maxsize for textfields

pull/1117/head
Krille 1 year ago
parent 8a64bdd82d
commit 62fcea5b0b
No known key found for this signature in database
GPG Key ID: E067ECD60F1A0652

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

Loading…
Cancel
Save