TF-145 Implement LoadMoreEmails in ThreadView

This commit is contained in:
dab246
2021-10-07 17:41:31 +07:00
committed by Dat H. Pham
parent 1224173fa0
commit ee58a77758
29 changed files with 337 additions and 173 deletions
+14
View File
@@ -16,6 +16,20 @@ class UIState extends ViewState {
class LoadingState extends UIState {
LoadingState();
@override
List<Object?> get props => [];
}
class LoadingMoreState extends UIState {
LoadingMoreState();
@override
List<Object?> get props => [];
}
class RefreshingState extends UIState {
RefreshingState();
@override
List<Object?> get props => [];
}