advanced_text_input_formatters_codespark 0.0.4
advanced_text_input_formatters_codespark: ^0.0.4 copied to clipboard
A Flutter package with advanced custom TextInputFormatters—simulate typing, block clipboard, allow only palindromes, enforce naming conventions and more.
[0.0.4] - 2025-06-05 #
✨ Added #
- 🆕
PanCardInputHelper
: A smart PAN card formatter with built-in validation and keyboard type switching.- Enforces format:
ABCDE1234F
- Automatically switches keyboardType:
text → number → text
- Includes optional validator method
- Provides static method for keyboard control and input enforcement
- Enforces format:
- 🧠 Dynamic
keyboardType
support usingValueKey
to force rebuilds - 🔧 Utility method
PanCardInputHelper.attachListener
for dynamic input reaction
[0.0.2] - 2025-05-04 #
[0.0.1] - Initial Release #
📌 Added #
DigitsOnlyFormatter
: Allows only numeric inputInputMirrorFormatter
: Reverses text as it's typedPreventRepeatCharactersFormatter
: Blocks repeated consecutive charactersBlockClipboardFormatter
: Disables clipboard access (e.g., paste)PalindromeOnlyFormatter
: Allows only palindromic text- `OnlyAlphabetsFormat