728x90
https://velog.io/@adbr/flutter-TextFormField-특정-문자-제한-Restrict-Special-Character-Input-Flutter
해당 블로그를 참고하여
FilteringTextInputFormatter.deny(RegExp('[-.]')),
이걸 만들었다. Texttype을 아래와 같이 잡아도 안되더라. 그래서 아예 입력 안되게 만듬..
keyboardType: const TextInputType.numberWithOptions(signed: false, decimal: false),
728x90
'개발 > Flutter' 카테고리의 다른 글
업데이트 시 firebase dynamic link 안 되는 현상 (0) | 2022.08.14 |
---|---|
GetX dialog, bottom sheet 에 controller binding 하기! (0) | 2022.08.11 |
if (contain('')) 은 true이다. (0) | 2022.08.10 |
getX로 debounce 쉽게 쓰는 방법 (0) | 2022.08.10 |
GetX로 이동 시 parameter 전달해주기 (0) | 2022.08.09 |