tanutapi
tanutapi
The `dart_meteor` does not keep the login state across the app close and reopening. You must manage it yourself. When you do a `meteor.loginWithPassword`, it will return a `MeteorClientLoginResult` object,...
In my case, I have to go to AWS Certificate Manager / List certificates. Delete the pending one and request a new cert with DNS option.
The `meteor.collection('')` returns `Stream` which you can then able to use with the Flutter's `StreamBuilder`. If you `print` it out you will see the format of returning object is: {...
You could share your full widget code if it is possible.
1. Do you forget to use `setState()` in your listening function? You should do: ``` meteor.collection('locations').listen((data) { setState(() { storeList = data.values.toList(); isLoading = false; }); }); ``` 2. I...
> On solution number 1, you must stop listening on your widget dispose().
Cloud you try `Rx.combineLatest2` as described in https://stackoverflow.com/questions/55285903/dartlang-rxdart-merge-different-type-streams? Something like ``` import 'package:rxdart/rxdart.dart'; ... ... _sub = Rx.combineLatest2( meteor.collection('category'), meteor.collection('locations'), (category, locations) { return [category, locations]; }).listen((combine) { setState(() {...
Is your Meteor server running? And if possible, cloud you share your endpoint when do a `meteor.connect()`?
@ariadys Could you send me your endpoint (privately) so I can try it.
Websocket secured `wss` should work anyway.