SomeSnackBarState(message). круто. а остальной экран что в этот момент делать будет?
приведите пример с кодом
LoginBloc() : super(UnauthorizedLoginState()) { on<SendLoginEvent>(_logIn); on<_AuthStateChange>(_processAuthState); subscribe(_authInteractor.watch(), (event) { add(_AuthStateChange(event)); }); } Future<void> _logIn(SendLoginEvent event, Emitter<LoginState> emit) async { emit(ProgressLoginState(true)); try { await _authInteractor.login(event.phone, event.pin); } catch (e) { emit(ErrorLoginState(createErrorMessage(e))); } emit(ProgressLoginState(false)); }
Обсуждают сегодня