Guy Luz

Results 315 comments of Guy Luz

Decided to go with `firebase_auth_rest`, this way we will be able to login with more account types like Facebook, apple and more. I think it is using googleapis_auth somehow too.

Found the fix, As I commented [on the file](https://gist.github.com/cachapa/33944987bd8fe6c6ba84021cecef8fb7) There is one Syntax Errors and one Logic Errors. To fix just add `?` to `read()` and `write(...)` override methods like...

I am facing the same issue in native dart, streams stop responding after couple of hours without crashing or showing any errors. This could be from the same reason of...

Tested again now with `yield* ref.stream.handleError((e) => {print('Handling Error Now')});` And ``` collectionsStream!.onError((e) => {print('Error in real-time stream')}); collectionsStream!.onDone(() => {print('Real-time stream is done')}); ``` None of them showed any...

Yes @kekko7072 I am trying to migrate this package to use auth from `firebase_auth_rest`. Unfortunately this on it own didn't solve this issue but it did throw exception. This is...

@kekko7072 I went one step forward and created issue in `dart-lang / http` about the null safety crash in `firebase_auth_rest` https://github.com/dart-lang/http/issues/581 You can help by saying that this is effecting...

My pull request is waiting for review.

@kekko7072 I am not the maintainer of this package so it is not on my hands. Please keep updated in this https://github.com/cachapa/firedart/pull/67

Don't close the issue, it is important to keep track.

If I understand you correctly the stream stop working for you after number of hours without being closed and without showing any error?. If so than I think that this...