Mike Diarmid

Results 130 comments of Mike Diarmid

10/10 would compile 🚫

I'd like to suggest using [react-native-firebase](https://github.com/invertase/react-native-firebase) - it's a small JS bridge to native side - all the work is done by the official native firebase SDK's for android and...

@brianegan @shilpan can I suggest using [react-native-firebase](https://github.com/invertase/react-native-firebase) - it's a small JS bridge to native side - no fetch used as all the work is done by the official native...

@yzarubin there's this and quite a few other things that can be done for perf on deque. But, with the lack of maintenance on this repo I ended up rolling...

@petkaantonov I considered PR'ing this, but I didn't know where to start as it was different implementation and was concerned the PR would sit there and go mouldy 😄 Was...

@calebboyd I didn't want to be 'that guy' =] You're more than welcome to do one however

HTTP requests made from Dart are as far as I'm aware not automatically captured by Performance Monitoring. If you're using Dio as mentioned above then your best bet would be...

Please can you try the latest firebase_performance plugin version since this should now be fixed.

There's an existing PR for this here: https://github.com/invertase/react-native-firebase/pull/4029 does this supersede that one? There was some notes on testing issues on the other one

DocumentSnapshot type would need changing to add in T, E.g. ```ts interface DocumentSnapshot { // .. data(): T; } ``` DocumentSnapshotDataType being whatever it currently returns without the converter changes