Henry Ho
Henry Ho
It would be great if geofirex can support a chain of where's and build out the query in a way that allows the user to use https://firebase.google.com/docs/firestore/query-data/queries. e.g. geo.collection('users').within(...).where('online', '==',...
As described at https://youtu.be/lO1S-FAcZU8?t=2m2s, there are inherited edge cases with geohash and they can be solved with doing more queries and filtering. However, since firestore's cost structure is based on...
After I changed my view from `Backbone.View.extend` to `Backbone.Shortcuts.extend` > Uncaught TypeError: Cannot call method 'on' of undefined on the line where I referenced `this.collection` in `initialize()`. Where did `this.collection`...
Intersection Observer API https://developer.mozilla.org/en-US/docs/Web/API/Intersection_Observer_API Polyfill from w3c https://github.com/w3c/IntersectionObserver/tree/master/polyfill Recommended from Google Chrome https://developers.google.com/web/fundamentals/performance/lazy-loading-guidance/images-and-video/#inline_images This api is well suited for this awesome project. It'd be even more awesome if you can...
My app uses getUserMedia but I realized that wkwebview does not support getUserMedia. The project looks interesting: https://github.com/common-tater/wkwebview-getusermedia-shim/ Any idea if it's possible to integrate this into react-native-wkwebview? Thanks!
Apparently RN's `` sets `navigator.product`to 'ReactNative'. Please consider doing the same for compatibility? https://github.com/facebook/react-native/issues/11154