FLUTTER ECOSYSTEM

enzotiezzi/masked_text_flutter

Plugin de campo de texto com máscara para Flutter

Capa do projeto masked_text_flutter
Stars
19
Forks
4
Último push (UTC)
29 de ago. de 2022
Status do projeto
Ativo
Enzo Tiezzi GitHub avatar
GITHUB User

Enzo Tiezzi ↗

LinguagensC++CMakeDartHTMLCSwiftKotlinObjective-C

Pacotes publicados por este repositório

Dependências usadas

Lista de dependências 3 itens

README original

Texto original em inglês. Visite o GitHub para a versão atual.

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