Muhammad Dafi

Results 3 comments of Muhammad Dafi

i don't know, why use `$` for naming variable, just try revoke `$` at your naming variable. it will solve the problem.

> I am using the latest version of mobx, on mobile it works correctly, but on the web version my data is not updated until I do hot reload, what...

you need create the another completer for handle race condition. ``` var completer = Completer(); var completerFinishDialog = Completer(); context.showSuccessBar(content: Text('Authentication verified!')).then((_) => completerFinishDialog.complate()); completer.complate(); await completer.future; await completerFinishDialog .future;...