Skip to content

Instantly share code, notes, and snippets.

View meomunm's full-sized avatar
🤒
Out sick

Trần Gia Hưng meomunm

🤒
Out sick
View GitHub Profile
@s859
s859 / number_formatter.dart
Created July 24, 2019 12:23
The following set of TextInputFormatters provides as-you-type formatting for United States dates, States, Zip Codes and Social Security numbers
import 'package:flutter/services.dart';
/// Format a phone number in format (###) ###-####
class UsPhoneTextInputFormatter extends TextInputFormatter {
@override
TextEditingValue formatEditUpdate(
TextEditingValue oldValue,
TextEditingValue newValue,
) {
final int newTextLength = newValue.text.length;