Skip to content

Commit bee7768

Browse files
committed
feat: Add config fetching states to app
- Added configFetching state - Added configFetchFailed state
1 parent f761edb commit bee7768

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

lib/app/bloc/app_state.dart

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,12 @@ enum AppStatus {
1313

1414
/// The user is anonymous (signed in using an anonymous provider).
1515
anonymous,
16+
17+
/// Fetching the essential AppConfig.
18+
configFetching,
19+
20+
/// Fetching the essential AppConfig failed.
21+
configFetchFailed,
1622
}
1723

1824
class AppState extends Equatable {

0 commit comments

Comments
 (0)