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
Note not the ShadSelect
The onChanged will be trigger
Does not trigger the onChanged it needs to enabled the onChangedNullable
onChangedNullable
0.13.5
Windows
ShadSelectFormField( id: 'email', minWidth: 350, initialValue: initialValue, // onChanged: allowDeselection ? null : print, // onChangedNullable: allowDeselection ? print : null, onChanged: (v) { print('onChanged: $v'); }, // onChangedNullable: (v) { // print('onChangedNullable: $v'); // }, options: verifiedEmails .map((email) => ShadOption(value: email, child: Text(email))) .toList(), selectedOptionBuilder: (context, value) => value == 'none' ? const Text('Select a verified email to display') : Text(value), placeholder: const Text('Select a verified email to display'), validator: (v) { if (v == null) { return 'Please select an email to display'; } return null; }, ),
[Upload media here]
[Paste your logs here]
[Paste your output here]
The text was updated successfully, but these errors were encountered:
PR
Sorry, something went wrong.
No branches or pull requests
Steps to reproduce
Expected results
The onChanged will be trigger
Actual results
Does not trigger the onChanged it needs to enabled the
onChangedNullable
shadcn_ui version
0.13.5
Platform
Windows
Code sample
Code sample
Screenshots or Video
Screenshots / Video demonstration
[Upload media here]
Logs
Logs
[Paste your logs here]
Flutter Doctor output
Doctor output
[Paste your output here]
The text was updated successfully, but these errors were encountered: