Commit c069a49 Salim Lachdhaf
committed
1 parent e7f1b04 commit c069a49 Copy full SHA for c069a49
File tree 3 files changed +20
-6
lines changed
3 files changed +20
-6
lines changed Original file line number Diff line number Diff line change
1
+ ## [ 6.0.2] - 2025.01.16
2
+ * Fix lint errors
3
+
1
4
## [ 6.0.1] - 2024.09.21
2
5
* #### New Feature:
3
6
* add ` Semantics ` to searchBox to support voiceOver/TalkBack ...
Original file line number Diff line number Diff line change @@ -497,7 +497,9 @@ class DropdownSearchState<T> extends State<DropdownSearch<T>> {
497
497
dropdownButtonPressed () => _selectSearchMode ();
498
498
499
499
if (! widget.suffixProps.dropdownButtonProps.isVisible &&
500
- ! widget.suffixProps.clearButtonProps.isVisible) return null ;
500
+ ! widget.suffixProps.clearButtonProps.isVisible) {
501
+ return null ;
502
+ }
501
503
502
504
return Row (
503
505
textDirection: TextDirection .ltr,
@@ -751,7 +753,9 @@ class DropdownSearchState<T> extends State<DropdownSearch<T>> {
751
753
if (await widget.onBeforePopupOpening !(getSelectedItem) == false ) return ;
752
754
} else if (widget.onBeforePopupOpeningMultiSelection != null ) {
753
755
if (await widget.onBeforePopupOpeningMultiSelection !(getSelectedItems) ==
754
- false ) return ;
756
+ false ) {
757
+ return ;
758
+ }
755
759
}
756
760
757
761
_handleFocus (true );
Original file line number Diff line number Diff line change 1
1
name : dropdown_search
2
2
description : Simple and reactive Searchable Dropdown with item search feature, making it possible to use an sync/async item for easy customization.
3
- version : 6.0.1
3
+ version : 6.0.2
4
4
homepage : https://github.com/salim-lachdhaf
5
- git : https://github.com/salim-lachdhaf/searchable_dropdown
6
- repository : https://github.com/salim-lachdhaf/searchable_dropdown
5
+ git : https://github.com/salim-lachdhaf/dropdown_search
6
+ repository : https://github.com/salim-lachdhaf/dropdown_search
7
7
8
8
environment :
9
9
sdk : " >=2.17.0 <4.0.0"
@@ -16,4 +16,11 @@ dependencies:
16
16
dev_dependencies :
17
17
flutter_test :
18
18
sdk : flutter
19
- lints : ^4.0.0
19
+ lints : ^5.1.1
20
+
21
+ topics :
22
+ - dropdown
23
+ - autocomplete
24
+ - form
25
+ - material
26
+ - popups
You can’t perform that action at this time.
0 commit comments