We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm using BoxLooseDecoration in PinInputTextFormField, and when validator added it look like this
BoxLooseDecoration
PinInputTextFormField( pinLength: 4, decoration: BoxLooseDecoration( radius: const Radius.circular(0), gapSpace: 40, strokeColorBuilder: PinListenColorBuilder( Palette.primary, Palette.grey.withOpacity(0.6), ), obscureStyle: ObscureStyle( isTextObscure: true, obscureText: '●', )), onChanged: (value) { debugPrint('onChanged OTP $value'); }, validator: (value) { if ((value?.isEmpty ?? true) || (value?.length ?? 0) < 4) { return "OTP is required"; } return null; }, onSubmit: (value) { }, ),
The text was updated successfully, but these errors were encountered:
@adarshwebcastle , I think u mean the gap between pin and error text is too close, am i right?
Sorry, something went wrong.
Yes, You are right
TinoGuo
When branches are created from issues, their pull requests are automatically linked.
I'm using
BoxLooseDecoration
in PinInputTextFormField, and when validator added it look like thisThe text was updated successfully, but these errors were encountered: