adar2378 / pin_code_fields

A flutter package which will help you to generate pin code fields with beautiful design and animations. Can be useful for OTP or pin code inputs 🤓🤓
https://pub.dev/packages/pin_code_fields
MIT License
690 stars 336 forks source link

Allow paste without confirmation dialog #306

Closed rbarzel closed 1 year ago

rbarzel commented 1 year ago

Hi,

Nice plug-in, thank you! It would be great there was an option to allow the user to paste without any confirmation dialog.

rbarzel commented 1 year ago

My mistake, seems the plug-in works exactly as I want it to.

ironclock commented 7 months ago

How did you fix this??

rbarzel commented 7 months ago

@ironclock

PinCodeTextField(
   beforeTextPaste: (_) => false,
   ...
)
cmoralesweb commented 7 months ago

@ironclock

PinCodeTextField(
   beforeTextPaste: (_) => false,
   ...
)

That blocks pasting altogether, not only the dialog.