flutter_masked_text 0.2.1 copy "flutter_masked_text: ^0.2.1" to clipboard
flutter_masked_text: ^0.2.1 copied to clipboard

outdated

Masked text input for flutter.

flutter_masked_text #

Masked text input for flutter.

logo

Install #

On your dependencies, add:

dependencies:
  flutter:
    sdk: flutter
  flutter_masked_text: ^0.1.0 #here

In terminal, run:

flutter packages get

Usage #

Import the library

import 'package:flutter_masked_text/flutter_masked_text.dart';

Create your mask controller:

var controller = new MaskedTextController(mask: '000.000.000-00');

Set controller to your text field:

return new MaterialApp(
    title: 'Flutter Demo',
    theme: new ThemeData(
        primarySwatch: Colors.blue,
    ),
    home: new SafeArea(
        child: new Scaffold(
            body: new Column(
                children: <Widget>[
                    new TextField(controller: controller,) // <--- here
                ],
            ),
        ),
    ),
);

This is the result:

sample

Mask Options #

In mask, you can use the following characters:

  • 0: accept numbers
  • A: accept letters
  • @: accept numbers and letters
  • *: accept any character

Initial Value #

To start a mask with initial value, just use text property on constructor:

var controller = new MaskedTextController(mask: '000-000', text: '123456');

Update text programaticaly #

If you want to set new text after controller initiatialization, use the updateText method:

var controller = new MaskedTextController(text: '', mask: '000-000');
controller.updateText('123456');

print(controller.text); //123-456

Using default TextEditingController #

The MaskedTextController extends TextEditingController. You can use all default native methods from this class.

TODO #

  • Raw Text Widget
  • Money Mask
  • Default Pre-Sets like CPF, CNPJ, Date, Credit Card
  • Custom translations
239
likes
0
pub points
95%
popularity

Publisher

unverified uploader

Masked text input for flutter.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on flutter_masked_text