Bloc: is it possible to yield 2 time the same state?
问题 In the login view, if the user taps on the login button without having inserted his credentials, the LoginFailState is yield and the view reacts to it. If he taps again, this LoginFailstate is yield again, but the view doesn't react to it. So, is there a way to yield more times the same state? There is some code to better explain my situation: class LoginBloc extends Bloc<LoginEvent, LoginState> { @override LoginState get initialState => LoginUninitialized(); @override Stream<LoginState>