FLUTTER ECOSYSTEM

enzotiezzi/masked_text_flutter

Flutter 마스크 텍스트 필드 플러그인

masked_text_flutter 프로젝트 이미지
Stars
19
Forks
4
최근 푸시(UTC)
2022. 8. 29.
프로젝트 상태
활성
Enzo Tiezzi GitHub avatar
GITHUB User

Enzo Tiezzi ↗

언어C++CMakeDartHTMLCSwiftKotlinObjective-C

이 저장소가 배포한 패키지

사용 중인 의존성

의존성 목록 3 개

원본 README

아래는 영문 원문 스냅샷입니다. 최신 내용은 GitHub에서 확인하세요.

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