flutter_pin_text_field

Last updated:

0 purchases

flutter_pin_text_field Image
flutter_pin_text_field Images
Add to Cart

Description:

flutter pin text field

A simple pin text box that supports customization of cursor, border, font, etc
Getting started #
read install tab
Usage #
object
PinTextField PinTextField({
Key? key,
int count = 6,
double height = 42.0,
double width = 42.0,
Color cursorColor = const Color.fromRGBO(255, 96, 10, 1),
Color fontColor = const Color.fromRGBO(0, 0, 0, 1),
double fontSize = 16,
double borderWidth = 1.0,
Color borderColor = const Color.fromRGBO(204, 204, 204, 1),
double focusBorderWidth = 1.0,
Color focusBorderColor = const Color.fromRGBO(100, 105, 110, 1),PinTextFieldBorderType borderType = PinTextFieldBorderType.Underline,
String finishedStringSeparator = "",
void Function(String)? onFinished,
})
copied to clipboard
usage
PinTextField(
borderType: PinTextFieldBorderType.Underline,
finishedStringSeparator: ",",
onFinished: (value) {
print(value);
})
copied to clipboard

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.