FlutterLoginPageBloc
FlutterLoginPageBloc copied to clipboard
Upgrading from RxDart 0.22.x to 0.23.x
Hi everyone, first THANKS to @iampawan for the code and happy new 2020 ! The code it's quite cool and easy to use.
Now my question is, can someone help me to update it so that it supports the latests RxDart ? As I think they drop the observable class, so, how should we replace the submitcheck to do it ?
Stream<bool> get submitCheck => Observable.combineLatest2(email, password, (e, p) => true);
Thanks a lot !
just change Observable.combine.................... to Rx.combine.............