/pin_input_text_field

A textField widget to help display different style pin

Primary LanguageDartMIT LicenseMIT

pin_input_text_field

A textField widget to help display different style pin

Example

UnderlineDecoration

BoxLooseDecoration

BoxTightDecoration

Installing

Install the latest version from pub.

Usage

PinInputTextField(
              onSubmit: (pin) {
                //Add submit action.
              },
              pinLength: 6,     // The length of the pin
              decoration: BoxTightDecoration(), // or BoxLooseDecoration, UnderlineDecoration
              width: 300.0,
              height: 48.0,
            );