An open API service indexing awesome lists of open source software.

https://github.com/siruscodes/date_text_input_formatter

Package to format date on textfield/textformfield while typing.
https://github.com/siruscodes/date_text_input_formatter

Last synced: over 1 year ago
JSON representation

Package to format date on textfield/textformfield while typing.

Awesome Lists containing this project

README

          

# DateInputTextFormatter

### Usage

**Add to pub**

dependencies:
date_input_text_formatter: ^0.0.1

**Import**

import 'package:date_text_input_formatter/date_text_input_formatter.dart';

**Use**

inputFormatters: [
DateTextInputFormatter(delimiter: "-", format: [dd, mm, yyyy])
],

// dd-mm-yyyy

or

inputFormatters: [
DateTextInputFormatter( format: [dd, mm, yyyy])
],

// dd/mm/yyyy