FLUTTER ECOSYSTEM

enzotiezzi/masked_text_flutter

Flutter masked text field plugin

masked_text_flutter project cover
Stars
19
Forks
4
Last push (UTC)
Aug 29, 2022
Project status
Active
Enzo Tiezzi GitHub avatar
GITHUB User

Enzo Tiezzi ↗

LanguagesC++CMakeDartHTMLCSwiftKotlinObjective-C

Packages published by this repository

Dependencies used

Dependency list 3 items

Original README

English project snapshot. Visit GitHub for the latest content.

Expand / collapse project README

masked_text

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

Getting Started

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"),
);