You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.1 KiB
40 lines
1.1 KiB
import 'dart:convert';
|
|
|
|
import 'package:flutter/services.dart';
|
|
|
|
class Utf8LengthLimitingTextInputFormatter extends TextInputFormatter {
|
|
final int maxBytes;
|
|
|
|
const Utf8LengthLimitingTextInputFormatter(this.maxBytes);
|
|
|
|
@override
|
|
TextEditingValue formatEditUpdate(
|
|
TextEditingValue oldValue,
|
|
TextEditingValue newValue,
|
|
) {
|
|
if (maxBytes <= 0) return oldValue;
|
|
final bytes = utf8.encode(newValue.text);
|
|
if (bytes.length <= maxBytes) return newValue;
|
|
|
|
final truncated = _truncateToMaxBytes(newValue.text, maxBytes);
|
|
return TextEditingValue(
|
|
text: truncated,
|
|
selection: TextSelection.collapsed(offset: truncated.length),
|
|
composing: TextRange.empty,
|
|
);
|
|
}
|
|
|
|
String _truncateToMaxBytes(String text, int limit) {
|
|
final buffer = StringBuffer();
|
|
var used = 0;
|
|
for (final rune in text.runes) {
|
|
final char = String.fromCharCode(rune);
|
|
final charBytes = utf8.encode(char).length;
|
|
if (used + charBytes > limit) break;
|
|
buffer.write(char);
|
|
used += charBytes;
|
|
}
|
|
return buffer.toString();
|
|
}
|
|
}
|