-
-
Notifications
You must be signed in to change notification settings - Fork 636
New issue
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
关于设置disable切换后,onLoad无法正常执行问题 #608
Comments
flutter_easy_refresh/lib/src/notifier/indicator_notifier.dart Lines 535 to 539 in 9b9f5ac
修改成 if (_task == null) {
if (_mode != IndicatorMode.inactive) {
_mode = IndicatorMode.inactive;
}
return;
} Debug 发现没有 task 的时候 依旧执行了更新模式代码 导致 Mode 执行成为 armed 状态 无法执行 _onTask 任务 |
xuelongqy
added a commit
that referenced
this issue
Jan 6, 2023
3.2.1 已解决 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
参考的ClassicFooter的example写法,当我数据不足一页时,设置disable为true,当我重新获取数据,并设置为false时,onLoad内函数未执行
The text was updated successfully, but these errors were encountered: