AbdullahChauhan / custom-dropdown

Custom dropdown widget allows to add highly customizable dropdown widget in your projects. Features includes Search on list data, Network search, Multi-selection and many more.
https://pub.dev/packages/animated_custom_dropdown
BSD 3-Clause "New" or "Revised" License
150 stars 70 forks source link

It always has a line at the bottom, how do I turn it off? #86

Open vqh2602 opened 3 months ago

vqh2602 commented 3 months ago
image

CleanShot 2024-07-19 at 17 22 36@2x

custom-dropdown: 3.1.1 flutter: 3.19.6 mycode:

CustomDropdown<String>.search(
                  hintText: 'Select job role',
                  items: _categories,
                  excludeSelected: false,
                  onChanged: (value) {},
                  decoration: CustomDropdownDecoration(
                    closedBorder: Border.all(color: Colors.blueAccent),
                    closedErrorBorder: Border.all(color: Colors.redAccent),

                    // expandedBorder: Border.all(),
                  ),
                ),
vqh2602 commented 3 months ago

@AbdullahChauhan

vqh2602 commented 3 months ago

image Okay, just remove the part after customizing the theme