flutter code input
a flutter widget for inputting content with a fixed length, visually treating each character as a separate segment.
usage
this is a small example:
codeinput(
length: 4,
keyboardtype: textinputtype.number,
builder: codeinputbuilders.lightcircle(),
onfilled: (value) => print('your input is $value.'),
)
for more information about the properties, have a look at the api reference.
Comments are closed.