maskara
maskara copied to clipboard
A simple way to format text fields without getting affected by input filters
There is one issue with mask. If you set phone code to let's say +998 (__) ____ - __ - __, here the code contains the digits 9 and 8,...
Fixed the selection that was leading to crash if the selection was higher than the length of the text. Fixes #27
Hi @santalu! The widget makes the app crash if it is used without a mask. It is becasue a null listener is added on the overriden function onAttachedToWindow I have...
Is it possible to use a mask that as the user enters additional values, they will appear starting with the right-most digit, pushing older digit entries left as they type?...
for unmasked strings textedit behaves unexpectedly. ex. text=5551112233->onfocus->delete-> +90 555 111 22 3 but scroll goes to the start of string like -> +90 (555) |111 22 3_ to solve...
Using the following mask. ``` val postCodeMask = Mask( value = "___ ___", character = '_', style = MaskStyle.NORMAL ) ``` I get an IndexOutOfBoundsExeption when hitting the space character...
## What happened 🤔 - There is the need of building MaskTextView to show masked text - Also a `clearFormat` util to clear mask format programmatically ## PoW (a.k.a Proof...
How to use it for : IP Mask example : 192.168.0.1 198.168.127.250 every part : 0..255 also with hint like : input ip : xxx.xxx.xxx.xxx
Hi @santalu, When i try to enter text, it always duplicate the text before. Is this normal?
Fix RafaRuiz' PR not compiling. Fixes #27