0 purchases
text mask
text_mask #
A package for mask textField and const text (eg. Date, phone number, IP address etc.)
Usage #
add this line to pubspec.yaml
dependencies:
text_mask: ^1.0.4
copied to clipboard
import package
import 'package:text_mask/text_mask.dart';
copied to clipboard
Use # for your char in text you want to mask #
Const text mask example: #
Text(
'Phone: ${TextMask(pallet: '+90(###) ### ## ##').getMaskedText('5451312132')}',
),
copied to clipboard
TextField Mask Example #
TextField(
keyboardType: TextInputType.phone,
inputFormatters: [TextMask(pallet: '+90(###) ### ## ##')],
decoration: const InputDecoration(
label: Text(
'Phone',
),
),
),
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.