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
Hi, good work. I have a request. I need hide the underline and not show the option for it. Thanks
The text was updated successfully, but these errors were encountered:
Hey @hortigado Code snippet please. I couldn't able to reproduce this issue on my side. Thanks!
Sorry, something went wrong.
CustomDropdown<Members>.search( decoration: CustomDropdownDecoration( closedBorder: Border.all(color: ColorConstant.gray200), ), hintText: 'Company Code', items: GlobalStorage.instance.memberList, excludeSelected: false, onChanged: (value) { }, ),
Having same issue.
I have declare inputDecorationTheme for the material app
inputDecorationTheme: const InputDecorationTheme( isDense: true, enabledBorder: UnderlineInputBorder( borderSide: BorderSide(color: Colors.black), ), focusedBorder: UnderlineInputBorder( borderSide: BorderSide(color: Colors.black), ), ),
Seems like custom_dropdown.dart build method cause the issue
Line 605 - 611
return InputDecorator( decoration: InputDecoration( errorStyle: decoration?.errorStyle ?? _defaultErrorStyle, errorText: formFieldState.errorText, border: InputBorder.none, contentPadding: EdgeInsets.zero, ),
No branches or pull requests
Hi, good work. I have a request. I need hide the underline and not show the option for it. Thanks
The text was updated successfully, but these errors were encountered: