FlutterLoginPageBloc
FlutterLoginPageBloc copied to clipboard
sometimes submitCheck doesn't work right
You can see these screenshots 👇:
please add this code in bloc.dart: Bloc() { _emailController.listen(dataChange());
_passwordController.listen(dataChange());
} dataChange() { submitCheck; }
Code has missing the controller event listening.
You can see these screenshots point_down:
![]()
please add this code in bloc.dart: Bloc() { _emailController.listen(dataChange());
_passwordController.listen(dataChange());
} dataChange() { submitCheck; }
Code has missing the controller event listening.
Thanks,i will try it !
I am facing the same issue. listen
keyword is not found in the vs code intellisence. my dart sdk version is 2.6.
Thank GOD. I have got very good support from stackoverflow community. see the following link (https://stackoverflow.com/questions/60575135/rx-combinelatest2-not-working-as-expected) to find out the thread.