add back #pangea comment tags

pull/1384/head
bluearevalo 1 year ago
parent bb32f584f4
commit e6fa69df39

@ -490,10 +490,13 @@ class InputBar extends StatelessWidget {
keyboardType: keyboardType!, keyboardType: keyboardType!,
textInputAction: textInputAction, textInputAction: textInputAction,
autofocus: autofocus!, autofocus: autofocus!,
//setting max character count to 1000
//after max, nothing else can be typed
inputFormatters: [ inputFormatters: [
//#Pangea
//LengthLimitingTextInputFormatter((maxPDUSize / 3).floor()),
//setting max character count to 1000
//after max, nothing else can be typed
LengthLimitingTextInputFormatter(1000), LengthLimitingTextInputFormatter(1000),
//Pangea#
], ],
onSubmitted: (text) { onSubmitted: (text) {
// fix for library for now // fix for library for now

Loading…
Cancel
Save