v1.1.2
masked_text
A simple and basic masked text package.
26Likes 35030-day downloads130Pub points
AndroidiOSWebmacOSWindowsLinux
Flutter masked text field plugin
{"sdk":"flutter"}^2.4.0{"sdk":"flutter"}English project snapshot. Visit GitHub for the latest content.
A package for masked texts, so if you want a mask for phone, or zip code or any kind of mask, just use it :D
It's very simple, it's a Widget as all the other ones.
MaskedTextField
(
maskedTextFieldController: _textCPFController,
mask: "###.###.###-###",
maxLength: 14,
keyboardType: TextInputType.number,
inputDecoration: new InputDecoration(
hintText: "Write you Document here", labelText: "CPF"),
);