TF-1931 Fix user cannot do infinity scroll when he turn off network and reconnect again

(cherry picked from commit e19a644e10671089ac792cb1072cc1856b909940)
This commit is contained in:
dab246
2023-06-19 16:38:45 +07:00
committed by Dat H. Pham
parent 64ad8ea049
commit 4e740d2a20
3 changed files with 29 additions and 9 deletions
@@ -0,0 +1,8 @@
enum LoadingMoreStatus {
idle,
running,
completed;
bool get isRunning => this == LoadingMoreStatus.running;
}