We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 33f438a commit 1b7ac58Copy full SHA for 1b7ac58
lib/page/SearchPage.dart
@@ -120,13 +120,25 @@ class _SearchPageState extends State<SearchPage> with AutomaticKeepAliveClientMi
120
if (searchText == null || searchText.trim().length == 0) {
121
return;
122
}
123
+ if(isLoading) {
124
+ return;
125
+ }
126
_resolveSelectIndex();
127
}, () {
128
129
130
131
132
133
134
135
}, (selectIndex) {
136
+ if (searchText == null || searchText.trim().length == 0) {
137
138
139
140
141
142
this.selectIndex = selectIndex;
143
144
})),
0 commit comments