Vilson Blanco Dauinheimer (Bwolf)
Vilson Blanco Dauinheimer (Bwolf)
I guess is workin on the last version
I forget to test on it, and how we are trying to fix all issues, this is one thing that i want to test =)
``` var query = ''' subscription getProdutos { produto { id nome valor tipo_produto { descricao } categoria_produto { descricao } } }'''; var snapshot = await _hasuraConnect.subscription(query); var stream...
@ramsmart-inno https://github.com/Bwolfs2/loja_hasura
@BenevidesLecontes https://github.com/Flutterando/modular/pull/884
Any solution for this issue?
I guess not, u need to use [Flutter Modular](https://pub.dev/packages/flutter_modular/versions/3.0.2) instead
When do u work with Stream this Null result is expected, i forget to pass my sample tomorrow =/ [Sample Code](https://github.com/Bwolfs2/loja_hasura/blob/master/lib/app/modules/home/repositories/home_repository.dart)
If u are using 2.0+ u will need to implement a auth_interceptor to make this: ```dart class TokenInterceptor extends Interceptor { final FirebaseAuth auth; TokenInterceptor(this.auth); @override Future onConnected(HasuraConnect connect) {}...
In my project I also had the need to customize the AppBar and the Floating Buttom, so I did the PR #67 to create this flexibility. For me it worked...