DOB Input Field package helps you to take dob from user manually. This package validate user inputted DOB automatically.

Features

  • Take DOB manually.
  • Auto validation
  • Fixed character length
  • Date type input keyboard
  • User preferred Decoration

Getting started

Install the package :

dob_input_field: ^1.0.0

Usage

Import the package first. With Label and with validation

DOBInputField(
            firstDate: DateTime(1900),
            lastDate:DateTime.now() ,
            showLabel: true,
            autovalidateMode: AutovalidateMode.always,
            fieldLabelText: "With label",
          ),

Without Label and with validation

DOBInputField(
            firstDate: DateTime(1900),
            lastDate:DateTime.now() ,
          ),          

Without Label and without validation

DOBInputField(
            firstDate: DateTime(1900),
            lastDate:DateTime.now() ,
            autovalidateMode: AutovalidateMode.disabled,
          ),          

Additional information

Stay in touch via LinkedIN | Medium

Libraries

dob_input_field