masked_controller 1.0.1
masked_controller #
A controller to insert mask to textfield.
Install #
Follow this guide
Usage #
Import the library
import 'import 'package:masked_controller/masked_controller.dart';';
and the mask:
import 'package:masked_controller/mask.dart';
Create the Controller
final MaskedController _controller = MaskedController(mask: Mask(mask: 'NNN.NNN.NNN-NN'));
Get unmasked value #
To get the unsmaked value from controller, use the unmaskedText
property:
final String val = controller.unmaskedText;
Inspired by: https://github.com/benhurott/flutter-masked-text
[1.0.1] - 2019-10-29.
- Minor improvements.
[1.0.0] - 2019-10-22.
- First release.
Use this package as a library
1. Depend on it
Add this to your package's pubspec.yaml file:
dependencies:
masked_controller: ^1.0.1
2. Install it
You can install packages from the command line:
with Flutter:
$ flutter pub get
Alternatively, your editor might support flutter pub get
.
Check the docs for your editor to learn more.
3. Import it
Now in your Dart code, you can use:
import 'package:masked_controller/masked_controller.dart';
Popularity:
Describes how popular the package is relative to other packages.
[more]
|
69
|
Health:
Code health derived from static analysis.
[more]
|
100
|
Maintenance:
Reflects how tidy and up-to-date the package is.
[more]
|
71
|
Overall:
Weighted score of the above.
[more]
|
79
|
We analyzed this package on Dec 13, 2019, and provided a score, details, and suggestions below. Analysis was completed with status completed using:
- Dart: 2.7.0
- pana: 0.13.1+4
- Flutter: 1.12.13+hotfix.4
Maintenance suggestions
The package description is too short. (-19 points)
Add more detail to the description
field of pubspec.yaml
. Use 60 to 180 characters to describe the package, what it does, and its target use case.
Maintain an example. (-10 points)
Create a short demo in the example/
directory to show how to use this package.
Common filename patterns include main.dart
, example.dart
, and masked_controller.dart
. Packages with multiple examples should provide example/README.md
.
For more information see the pub package layout conventions.
Dependencies
Package | Constraint | Resolved | Available |
---|---|---|---|
Direct dependencies | |||
Dart SDK | >=2.1.0 <3.0.0 | ||
flutter | 0.0.0 | ||
meta | ^1.1.7 | 1.1.8 | |
Transitive dependencies | |||
collection | 1.14.11 | 1.14.12 | |
sky_engine | 0.0.99 | ||
typed_data | 1.1.6 | ||
vector_math | 2.0.8 | ||
Dev dependencies | |||
flutter_test |